Release v0.4.0 #110

Merged
lamacchinadesiderante merged 50 commits from develop into main 2024-05-27 19:05:12 +00:00
1 changed files with 13 additions and 6 deletions
Showing only changes of commit ac352db747 - Show all commits

View File

@ -1,21 +1,28 @@
# PHASE 1: copy and build # 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 WORKDIR /app
COPY . . COPY . .
RUN rm -rf node_modules && npm i --package-lock-only && npm ci
RUN rm -rf node_modules && npm install && npm run build RUN npm run build
# PHASE 2: prepare for exec # 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 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 EXPOSE 3000
CMD ["npm", "run", "start"] ENTRYPOINT [ "node" ]
CMD ["server.js"]