Maros Ondrejicka | c2f76f4 | 2023-02-27 13:22:45 +0100 | [diff] [blame] | 1 | ARG UBUNTU_VERSION |
2 | |||||
3 | FROM ubuntu:${UBUNTU_VERSION} | ||||
4 | |||||
5 | RUN apt-get update \ | ||||
6 | && apt-get install -y nginx \ | ||||
7 | && rm -rf /var/lib/apt/lists/* | ||||
8 | |||||
9 | COPY resources/nginx/nginx_server_mirroring.conf /nginx.conf | ||||
10 | |||||
11 | |||||
12 | ENTRYPOINT ["nginx", "-c", "/nginx.conf"] |