Files
server/util/Nginx/Dockerfile

10 lines
178 B
Docker
Raw Normal View History

2017-10-02 16:38:52 -04:00
FROM nginx:1.12
2017-08-04 12:21:13 -04:00
2017-08-23 22:13:50 -04:00
COPY nginx.conf /etc/nginx
COPY proxy.conf /etc/nginx
COPY mime.types /etc/nginx
2017-08-04 12:21:13 -04:00
2017-08-07 16:31:00 -04:00
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]