portfolio/docker/Dockerfile
Roman Jaroš ee8f8cf6e3
All checks were successful
forgejo/romanjaros/portfolio/pipeline/head This commit looks good
Update dockerfile to node:20-apline
2025-01-11 20:23:41 +00:00

27 lines
No EOL
488 B
Docker

# Install dependencies only when needed
FROM node:20-alpine
RUN apk add --no-cache libc6-compat
WORKDIR /app
ENV NODE_ENV production
ENV NEXT_TELEMETRY_DISABLED 1
RUN addgroup --system --gid 1001 nodejs
RUN 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
ENV PORT 3000
CMD ["npm", "run", "start"]