mirror of
				https://github.com/soybeanjs/soybean-admin.git
				synced 2025-11-04 07:43:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			377 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			377 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
ImageTag ?=v0.9.6
 | 
						|
SoybeanAdminImg ?= soybeanjs/soybean-admin:$(ImageTag)
 | 
						|
 | 
						|
VERSION=$(shell git rev-parse --short HEAD)
 | 
						|
 | 
						|
soybean-admin: soybean-admin-build soybean-admin-push
 | 
						|
 | 
						|
soybean-admin-build:
 | 
						|
	docker build --build-arg version=$(VERSION) -t ${SoybeanAdminImg} -f docker/Dockerfile .
 | 
						|
 | 
						|
soybean-admin-push:
 | 
						|
	docker push ${SoybeanAdminImg}
 | 
						|
 | 
						|
# run tauri app:
 | 
						|
run:
 | 
						|
	pnpm tauri dev
 |