nginx-basic-lb/Dockerfile

9 lines
193 B
Docker

FROM nginx:latest
ENV NGINX_ENVSUBST_OUTPUT_DIR=/etc/nginx
ENV APP_PORT=80
ENV APP_NAME=
COPY ./nginx.conf /etc/nginx/templates/nginx.conf.template
CMD ["nginx", "-g", "daemon off;"]