
Type: test Change-Id: I156b6d9e0759bc7d324ac7d618a195ee5803ca75 Signed-off-by: Adrian Villin <avillin@cisco.com>
13 lines
324 B
Docker
13 lines
324 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
|
|
COPY script/nginx_mirroring_entrypoint.sh /usr/bin/nginx_mirroring_entrypoint.sh
|
|
|
|
ENTRYPOINT ["nginx_mirroring_entrypoint.sh"]
|