blob: 1971158131be5e00e4ffa6510909ee6e7522546f [file] [log] [blame]
Maros Ondrejickac2f76f42023-02-27 13:22:45 +01001ARG UBUNTU_VERSION
2
3FROM ubuntu:${UBUNTU_VERSION}
4
5RUN apt-get update \
6 && apt-get install -y nginx \
7 && rm -rf /var/lib/apt/lists/*
8
9COPY resources/nginx/nginx_server_mirroring.conf /nginx.conf
10
11
12ENTRYPOINT ["nginx", "-c", "/nginx.conf"]