mirror of
				https://github.com/lzh-1625/go_process_manager.git
				synced 2025-10-31 19:32:43 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			291 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			291 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # 构建阶段
 | |
| FROM node:lts-alpine as build-stage
 | |
| WORKDIR /app
 | |
| COPY package*.json ./
 | |
| RUN npm install
 | |
| COPY . .
 | |
| RUN npm run build
 | |
| 
 | |
| # 生产阶段
 | |
| FROM nginx:stable-alpine as production-stage
 | |
| COPY --from=build-stage /app/dist /usr/share/nginx/html
 | |
| EXPOSE 80
 | |
| CMD ["nginx", "-g", "daemon off;"]
 | 
