10 lines
		
	
	
		
			304 B
		
	
	
	
		
			Docker
		
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			304 B
		
	
	
	
		
			Docker
		
	
	
| FROM registry.cn-zhangjiakou.aliyuncs.com/dvadmin-pro/node12-base-web:latest
 | |
| WORKDIR /web/
 | |
| COPY web/. .
 | |
| RUN npm install --registry=https://registry.npm.taobao.org
 | |
| RUN npm run build
 | |
| 
 | |
| FROM nginx:alpine
 | |
| COPY ./docker_env/nginx/my.conf /etc/nginx/conf.d/my.conf
 | |
| COPY --from=0 /web/dist /usr/share/nginx/html
 |