blob: 0720c6f2cb79ea41181e09a4e346d0b8166c0102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
ARG UBUNTU_VERSION
FROM ubuntu:${UBUNTU_VERSION}
RUN apt-get update \
&& apt-get install -y nginx \
&& rm -rf /var/lib/apt/lists/*
COPY resources/nginx/nginx_server_mirroring.conf /nginx.conf
ENTRYPOINT nginx -c /nginx.conf
|