generated from autonomic-cooperative/astro-payload-template
	
		
			Some checks reported errors
		
		
	
	continuous-integration/drone/push Build encountered an error
				
			
		
			
				
	
	
		
			31 lines
		
	
	
		
			645 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			645 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM node:lts as base
 | 
						|
WORKDIR /base
 | 
						|
COPY package.json yarn.lock ./
 | 
						|
RUN yarn install --frozen-lockfile
 | 
						|
COPY . .
 | 
						|
 | 
						|
FROM base AS dev
 | 
						|
ENV NODE_ENV=development
 | 
						|
EXPOSE 3001
 | 
						|
CMD ["yarn","dev"]
 | 
						|
 | 
						|
FROM base AS build
 | 
						|
ENV NODE_ENV=production
 | 
						|
WORKDIR /build
 | 
						|
COPY --from=base /base .
 | 
						|
RUN yarn build
 | 
						|
 | 
						|
FROM build as prod
 | 
						|
ENV NODE_ENV=production
 | 
						|
WORKDIR /prod
 | 
						|
COPY package*.json  .
 | 
						|
RUN yarn install --production
 | 
						|
 | 
						|
COPY --from=build /build/tsconfig.json ./tsconfig.json
 | 
						|
COPY --from=build /build/dist ./dist
 | 
						|
COPY --from=build /build/build ./build
 | 
						|
EXPOSE 3000
 | 
						|
COPY docker-entrypoint.sh /docker-entrypoint.sh
 | 
						|
ENTRYPOINT ["/docker-entrypoint.sh"]
 | 
						|
CMD ["yarn", "serve"]
 |