From 965000e48f6cb0c4937de6ee1c61c9b469da6668 Mon Sep 17 00:00:00 2001 From: AlinsRan Date: Mon, 29 Apr 2024 03:58:46 +0000 Subject: [PATCH] fix build-dev ci --- debian-dev/Dockerfile.local | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/debian-dev/Dockerfile.local b/debian-dev/Dockerfile.local index f3ba829c..14d9624a 100644 --- a/debian-dev/Dockerfile.local +++ b/debian-dev/Dockerfile.local @@ -35,6 +35,7 @@ RUN set -x \ make \ git \ sudo \ + libyaml-dev \ && ls -al \ && make deps \ && mkdir -p ${ENV_INST_LUADIR} \ @@ -51,7 +52,8 @@ COPY --from=build /usr/local/openresty /usr/local/openresty COPY --from=build /usr/bin/apisix /usr/bin/apisix COPY ${INSTALL_BROTLI} /install-brotli.sh -RUN chmod +x /install-brotli.sh \ +RUN apt-get install -y libyaml-dev \ + chmod +x /install-brotli.sh \ && cd / && ./install-brotli.sh && rm -rf /install-brotli.sh ENV PATH=$PATH:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin