mirror of
				https://github.com/pure-admin/vue-pure-admin.git
				synced 2025-11-03 13:44:47 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			425 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			425 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM node:20-alpine as build-stage
 | 
						|
 | 
						|
WORKDIR /app
 | 
						|
RUN corepack enable
 | 
						|
RUN corepack prepare pnpm@latest --activate
 | 
						|
 | 
						|
RUN npm config set registry https://registry.npmmirror.com
 | 
						|
 | 
						|
COPY .npmrc package.json pnpm-lock.yaml ./
 | 
						|
RUN pnpm install --frozen-lockfile
 | 
						|
 | 
						|
COPY . .
 | 
						|
RUN pnpm 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;"] |