aboutsummaryrefslogtreecommitdiff
path: root/nginx-common/Dockerfile
blob: 0d904a00ef8db6e55f44dd0fbc5a4d74d3eb8619 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM nginx:mainline-alpine
LABEL maintainer="Mike Crute <mike@crute.us>"

RUN set -euxo pipefail; \
    rm -rf /etc/nginx

ADD conf/ /etc/nginx/
ADD nginx_bootstrap /

ENTRYPOINT [ "/nginx_bootstrap" ]
CMD ["/usr/sbin/nginx", "-g", "daemon off;"]