prepare for nginx docker image

This commit is contained in:
Marco Ochse
2018-02-16 15:17:34 +01:00
parent 8e76d4c909
commit 46c92047cb
17 changed files with 439 additions and 0 deletions

23
docker/nginx/Dockerfile Normal file
View File

@ -0,0 +1,23 @@
FROM nginx:alpine
MAINTAINER MO
# Include dist
ADD dist/ /root/dist/
# Get and install dependencies & packages
RUN apk -U upgrade && \
apk add bash nginx nginx-mod-http-headers-more procps && \
# Setup configs
rm /etc/nginx/conf.d/* /usr/share/nginx/html/* && \
cp /root/dist/conf/nginx.conf /etc/nginx/ && \
cp -R /root/dist/conf/ssl /etc/nginx/ && \
cp /root/dist/conf/tpotweb.conf /etc/nginx/conf.d/ && \
cp -R /root/dist/html/ /var/lib/nginx/ && \
# Clean up
rm -rf /root/* && \
rm -rf /var/cache/apk/*
# Start nginx
CMD nginx -g 'daemon off;'