philomena/docker/web/Dockerfile

7 lines
212 B
Text
Raw Normal View History

2020-09-06 12:57:33 -04:00
FROM nginx:1.18.0
2019-12-02 21:04:59 -05:00
ENV APP_DIR /srv/philomena
COPY docker/web/nginx.conf /tmp/docker.nginx
2019-12-03 13:36:50 -05:00
RUN envsubst '$APP_DIR' < /tmp/docker.nginx > /etc/nginx/conf.d/default.conf
2019-12-02 21:04:59 -05:00
EXPOSE 80
2020-04-27 15:18:43 -04:00
CMD ["nginx", "-g", "daemon off;"]