sk1/frontend/Dockerfile
2026-05-11 20:59:41 +02:00

8 lines
188 B
Docker

FROM nginx:1.27-alpine
COPY nginx.conf.template /etc/nginx/templates/default.conf.template
COPY index.html /usr/share/nginx/html/index.html
ENV BACKEND_URL=http://backend:5000
EXPOSE 80