docker-nginx-extras/Dockerfile

9 lines
202 B
Docker

FROM ubuntu:bionic
RUN apt-get update && \
apt-get install -y nginx-extras && \
rm -rf /var/lib/apt/lists/* && \
echo 'daemon off;' >> /etc/nginx/nginx.conf
ENTRYPOINT ["/usr/sbin/nginx"]