adrema/.docker/nginx.Dockerfile

13 lines
299 B
Docker
Raw Normal View History

2022-06-10 02:00:46 +02:00
FROM node:17.9.0-slim as node
WORKDIR /app
COPY . /app
2023-05-15 19:48:37 +02:00
RUN npm install && npm run prod && npm run img && rm -R node_modules
2022-06-10 02:00:46 +02:00
2023-05-15 19:48:37 +02:00
FROM nginx:1.21.6-alpine as nginx
WORKDIR /app
2023-07-20 22:58:51 +02:00
COPY --from=node /app /app
2023-07-20 16:29:20 +02:00
COPY ./.docker/nginx/nginx.conf /etc/nginx/nginx.conf
2023-05-15 19:48:37 +02:00
EXPOSE 80
2022-11-22 14:39:13 +01:00
2023-05-15 19:48:37 +02:00
CMD ["nginx", "-g", "daemon off;"]