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

18 lines
308 B
Docker
Raw Normal View History

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"]