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

RUN set -euxo pipefail; \
    rm -rf /etc/nginx; \
    mkdir -p /srv/www;

ADD conf/ /etc/nginx/
ADD nginx_bootstrap /

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