Files
web/deploy/Dockerfile
2023-08-27 21:01:17 -04:00

6 lines
157 B
Docker

FROM nginx:stable-alpine
RUN sed -i '1idaemon off;' /etc/nginx/nginx.conf
COPY deploy/nginx.conf /etc/nginx/conf.d/default.conf
COPY dist /app
CMD ["nginx"]