philomena/docker/web/Dockerfile

7 lines
219 B
Text
Raw Normal View History

2021-12-20 21:45:23 +01:00
FROM nginx:1.21.4-alpine
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;"]