Files
server/util/Nginx/Dockerfile

9 lines
166 B
Docker
Raw Normal View History

2017-08-04 12:21:13 -04:00
FROM nginx:stable
RUN rm /etc/nginx/nginx.conf
COPY nginx.conf /etc/nginx/nginx.conf
2017-08-07 16:31:00 -04:00
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]