Updated Dockerfile to include next.config.js + fixed lockfile install
This commit is contained in:
		
							parent
							
								
									bdffe0fd06
								
							
						
					
					
						commit
						c2011fdf05
					
				
					 1 changed files with 7 additions and 5 deletions
				
			
		
							
								
								
									
										12
									
								
								Dockerfile
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								Dockerfile
									
									
									
									
									
								
							|  | @ -1,20 +1,22 @@ | ||||||
| FROM node:14-alpine as deps | FROM node:14-alpine as deps | ||||||
|  | 
 | ||||||
|  | RUN apk add --no-cache libc6-compat | ||||||
| WORKDIR /app | WORKDIR /app | ||||||
| COPY calendso/package.json . | COPY calendso/package.json calendso/yarn.lock . | ||||||
| COPY calendso/prisma prisma | COPY calendso/prisma prisma | ||||||
| RUN yarn install --frozen | RUN yarn install ---frozen-lockfile | ||||||
| 
 | 
 | ||||||
| FROM node:14-alpine as builder | FROM node:14-alpine as builder | ||||||
| WORKDIR /app | WORKDIR /app | ||||||
| COPY calendso . | COPY calendso . | ||||||
| COPY --from=deps /app/node_modules ./node_modules | COPY --from=deps /app/node_modules ./node_modules | ||||||
| RUN yarn build | RUN yarn build && yarn install --production --ignore-scripts --prefer-offline | ||||||
| RUN yarn install --production --ignore-scripts --prefer-offline |  | ||||||
| 
 | 
 | ||||||
| FROM node:14-alpine as runner | FROM node:14-alpine as runner | ||||||
| WORKDIR /app | WORKDIR /app | ||||||
| ENV NODE_ENV production | ENV NODE_ENV production | ||||||
| 
 | 
 | ||||||
|  | COPY --from=builder /app/next.config.js ./ | ||||||
| COPY --from=builder /app/public ./public | COPY --from=builder /app/public ./public | ||||||
| COPY --from=builder /app/.next ./.next | COPY --from=builder /app/.next ./.next | ||||||
| COPY --from=builder /app/node_modules ./node_modules | COPY --from=builder /app/node_modules ./node_modules | ||||||
|  | @ -22,4 +24,4 @@ COPY --from=builder /app/package.json ./package.json | ||||||
| COPY --from=builder /app/prisma ./prisma | COPY --from=builder /app/prisma ./prisma | ||||||
| COPY  scripts scripts | COPY  scripts scripts | ||||||
| EXPOSE 3000 | EXPOSE 3000 | ||||||
| CMD ["/app/scripts/start.sh"] | CMD ["/app/scripts/start.sh"] | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Alex van Andel
						Alex van Andel