blob: aedf629ad1f9dc114671b1fce46fc83e25bb311a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
FROM ubuntu:xenial
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
nginx \
nginx-extras \
&& rm -rf /var/lib/apt/lists/*
COPY nginx.conf /etc/nginx/nginx.conf
CMD nginx -g "daemon off;"
|