seedling/source/ui/docker/Dockerfile
Mr. Renovate a96c726723
All checks were successful
forgejo/Procyon/seedling/pipeline/head This commit looks good
forgejo/Procyon/seedling/pipeline/pr-master This commit looks good
Update Node.js to v21
2023-12-29 17:33:22 +00:00

27 lines
No EOL
459 B
Docker

FROM node:21-alpine3.19
RUN apk add --no-cache libc6-compat
WORKDIR /app
ENV NODE_ENV production
ENV PORT 3000
ENV NEXT_TELEMETRY_DISABLED 1
RUN addgroup --system --gid 1001 nodejs \
&& adduser --system --uid 1001 nextjs
COPY .next/ .next/
COPY public/ public/
COPY node_modules/ node_modules/
COPY package.json package.json
COPY next.config.js next.config.js
RUN chown -R nextjs:nodejs .next
USER nextjs
EXPOSE 3000
CMD ["npm", "run", "start"]