summaryrefslogtreecommitdiffstats
path: root/extras/hs-test/Dockerfile.nginx
diff options
context:
space:
mode:
Diffstat (limited to 'extras/hs-test/Dockerfile.nginx')
-rw-r--r--extras/hs-test/Dockerfile.nginx16
1 files changed, 0 insertions, 16 deletions
diff --git a/extras/hs-test/Dockerfile.nginx b/extras/hs-test/Dockerfile.nginx
deleted file mode 100644
index 930151fefef..00000000000
--- a/extras/hs-test/Dockerfile.nginx
+++ /dev/null
@@ -1,16 +0,0 @@
-ARG UBUNTU_VERSION
-
-FROM ubuntu:${UBUNTU_VERSION}
-
-RUN apt-get update
-RUN apt-get install -y nginx
-RUN rm -rf /var/lib/apt/lists/*
-
-COPY vpp-data/lib/* /usr/lib/
-COPY resources/nginx/vcl.conf /vcl.conf
-COPY resources/nginx/nginx.conf /nginx.conf
-
-ENV VCL_CONFIG=/vcl.conf
-ENV LD_PRELOAD=/usr/lib/libvcl_ldpreload.so
-
-ENTRYPOINT ["nginx", "-c", "/nginx.conf"]