scanner/frontend/Dockerfile
2025-03-23 17:33:43 +01:00

7 lines
137 B
Docker

FROM nginx:latest
COPY ./public /usr/share/nginx/html
COPY site.conf /etc/nginx/conf.d/default.conf
CMD ["nginx", "-g", "daemon off;"]