Dockerfile 212 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 FROM nginx:1.10.0 COPY default.conf /etc/nginx/conf.d/ COPY proxy.conf /etc/nginx/ COPY env.sh /etc/nginx/ ADD dist.tar.gz /usr/share/nginx/html/ CMD ["sh", "-c", "/etc/nginx/env.sh ; nginx -g 'daemon off;'"]