From c3c0403dfaae0f86e5d334fd19fb93281dbcb06a Mon Sep 17 00:00:00 2001 From: Ryo Ota Date: Sun, 12 Dec 2021 23:16:10 +0900 Subject: [PATCH] Make Docker speak HTTP/3 --- docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 977a5877..1478b097 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -65,6 +65,9 @@ RUN git clone --depth 1 https://github.com/nghttp2/nghttp2.git && \ FROM gcr.io/distroless/base-debian11 +COPY --from=build \ + /usr/local/share/nghttp2/ \ + /usr/local/share/nghttp2/ COPY --from=build \ /usr/local/bin/h2load \ /usr/local/bin/nghttpx \