nginx-envsubst/Dockerfile

11 lines
237 B
Docker
Raw Normal View History

2022-03-13 21:21:41 +01:00
FROM nginx:alpine-perl
2021-02-05 15:13:20 +01:00
RUN apk add --upgrade --no-cache bash gettext inotify-tools
2022-03-09 16:53:28 +01:00
RUN mv /etc/nginx /etc/nginx.tmpl
RUN touch /etc/envsubst.conf
2021-02-05 15:13:20 +01:00
COPY start-nginx.sh /usr/local/bin/
ENTRYPOINT ["/bin/sh", "-c"]
CMD ["start-nginx.sh"]