salix/services/nginx/Dockerfile

15 lines
298 B
Docker

FROM nginx
RUN rm /etc/nginx/nginx.conf
RUN rm /etc/nginx/conf.d/default.conf
COPY conf-prod.conf /etc/nginx/nginx.conf
COPY static /usr/share/nginx/html
RUN apt-get update && apt-get -y install vim dnsmasq dnsutils
RUN echo listen-address=127.0.0.1 > /etc/dnsmasq.d/dnsmasq.conf
EXPOSE 8080