c2f76f4590
Type: test Signed-off-by: Maros Ondrejicka <mondreji@cisco.com> Change-Id: I05bbed8fd9d40929f040574044aed5292a475e91
13 lines
241 B
Docker
13 lines
241 B
Docker
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"]
|