8 lines
188 B
Docker
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
|