first commit
This commit is contained in:
		
							
								
								
									
										16
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,16 @@
 | 
			
		||||
FROM node:18-alpine AS builder
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
COPY package*.json .
 | 
			
		||||
RUN npm ci
 | 
			
		||||
COPY . .
 | 
			
		||||
RUN npm run build
 | 
			
		||||
RUN npm prune --production
 | 
			
		||||
 | 
			
		||||
FROM node:18-alpine
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
COPY --from=builder /app/build build/
 | 
			
		||||
COPY --from=builder /app/node_modules node_modules/
 | 
			
		||||
COPY package.json .
 | 
			
		||||
EXPOSE 3000
 | 
			
		||||
ENV NODE_ENV=production
 | 
			
		||||
CMD [ "node", "build" ]
 | 
			
		||||
		Reference in New Issue
	
	Block a user