summaryrefslogtreecommitdiffstats
path: root/extras/hs-test/docker/Dockerfile.nginx-http3
diff options
context:
space:
mode:
Diffstat (limited to 'extras/hs-test/docker/Dockerfile.nginx-http3')
-rw-r--r--extras/hs-test/docker/Dockerfile.nginx-http35
1 files changed, 3 insertions, 2 deletions
diff --git a/extras/hs-test/docker/Dockerfile.nginx-http3 b/extras/hs-test/docker/Dockerfile.nginx-http3
index 1070be9446a..bde73e32da1 100644
--- a/extras/hs-test/docker/Dockerfile.nginx-http3
+++ b/extras/hs-test/docker/Dockerfile.nginx-http3
@@ -14,11 +14,9 @@ RUN bash -c 'echo -e "Package: *\nPin: origin nginx.org\nPin: release o=nginx\nP
RUN apt update && apt install -y nginx=1.26.2*
-COPY vpp-data/lib/* /usr/lib/
COPY resources/nginx/vcl.conf /vcl.conf
COPY resources/nginx/nginx_http3.conf /nginx.conf
COPY script/nginx_ldp.sh /usr/bin/nginx_ldp.sh
-
COPY resources/nginx/html/index.html /usr/share/nginx/index.html
ENV VCL_CONFIG=/vcl.conf
@@ -27,4 +25,7 @@ ENV LDP_DEBUG=0
ENV VCL_DEBUG=0
ENV LDP_SID_BIT=8
+# copy vpp-data last to take advantage of caching (do not change)
+COPY vpp-data/lib/* /usr/lib/
+
ENTRYPOINT ["nginx_ldp.sh", "nginx", "-c", "/nginx.conf"]