docker-nginx-extras/Dockerfile

9 lines
202 B
Docker
Raw Permalink Normal View History

2024-01-30 16:30:59 -08:00
FROM ubuntu:bionic
2016-01-21 12:57:50 -08:00
RUN apt-get update && \
2024-01-30 16:30:59 -08:00
apt-get install -y nginx-extras && \
2016-01-21 12:57:50 -08:00
rm -rf /var/lib/apt/lists/* && \
echo 'daemon off;' >> /etc/nginx/nginx.conf
2024-01-30 16:30:59 -08:00
ENTRYPOINT ["/usr/sbin/nginx"]