From 48b184cd321c7e411fdbac8176f8a5544e81de81 Mon Sep 17 00:00:00 2001 From: yurymuski Date: Sun, 3 Sep 2023 02:27:38 +0400 Subject: [PATCH] fix compile err --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 8c4f101..5ebd6e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,7 @@ RUN apt-get update && \ RUN curl -O https://nginx.org/download/nginx-$NGINX_VERSION.tar.gz && \ tar xvzf nginx-$NGINX_VERSION.tar.gz && \ git clone --branch $QUICHE_VERSION --recursive https://github.com/cloudflare/quiche && \ + cd quiche && git submodule update --init && cd .. && \ git clone --recursive https://github.com/google/ngx_brotli.git && \ cd nginx-$NGINX_VERSION && \ patch -p01 < ../quiche/nginx/nginx-1.16.patch && \