optimnize Dockerfile

This commit is contained in:
Zottelchen 2024-05-24 08:33:28 +02:00 committed by lamacchinadesiderante
parent 6fc56eb7d3
commit 94bb688bca
1 changed files with 13 additions and 6 deletions

View File

@ -1,21 +1,28 @@
# PHASE 1: copy and build
FROM node:22.2.0-alpine3.19 AS build
FROM node:22-alpine AS build
ENV NEXT_TELEMETRY_DISABLED 1
ENV NEXT_PRIVATE_STANDALONE true
WORKDIR /app
COPY . .
RUN rm -rf node_modules && npm install && npm run build
RUN rm -rf node_modules && npm i --package-lock-only && npm ci
RUN npm run build
# PHASE 2: prepare for exec
FROM node:22.2.0-alpine3.19 AS exec
FROM node:22-alpine AS exec
ENV NEXT_TELEMETRY_DISABLED 1
ENV NODE_ENV production
WORKDIR /app
COPY --from=build /app/. .
COPY --from=build /app/.next/standalone .
COPY --from=build /app/.next/static ./.next/static
COPY --from=build /app/public ./public
EXPOSE 3000
CMD ["npm", "run", "start"]
ENTRYPOINT [ "node" ]
CMD ["server.js"]