This repository has been archived on 2024-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
helse-sprik/frontend/Dockerfile
sindrekjelsrud 06c08ce89e 🚀deploy
Co-authored-by: Amalie Erdal Mansaker <amalie.erdal.mansaker@nav.no>
2023-06-28 16:17:21 +02:00

18 lines
No EOL
308 B
Docker

FROM node:18-alpine
ENV NODE_ENV production
RUN addgroup --system --gid 1069 nodejs
RUN adduser --system --uid 1069 nextjs
WORKDIR /app
COPY --chown=nextjs:nodejs .next/standalone ./
COPY --chown=nextjs:nodejs .next/static ./.next/static
USER nextjs
EXPOSE 3000
ENV PORT 3000
CMD ["node", "server.js"]