web/Dockerfile.emergency

13 lines
327 B
Docker
Raw Normal View History

2023-10-26 00:54:52 +03:30
FROM stefanscherer/node-windows AS runner
2023-10-19 20:02:54 +03:30
WORKDIR /app
ARG NODE_ENV=production
COPY public ./public
COPY .next ./.next
COPY node_modules ./node_modules
COPY package.json ./package.json
COPY .env.production ./.env.production
COPY next.config.js ./next.config.js
EXPOSE 3000
ENV PORT 3000
CMD ["node_modules/.bin/next", "start"]