From a0bb811b4c8789170f91a135de90e03578b3c5ce Mon Sep 17 00:00:00 2001 From: lifegpc Date: Sun, 5 Feb 2023 00:42:03 +0000 Subject: [PATCH] Devcontainer: Disable brotli and inih --- .devcontainer/all/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/all/Dockerfile b/.devcontainer/all/Dockerfile index b19c67f..1d0096e 100644 --- a/.devcontainer/all/Dockerfile +++ b/.devcontainer/all/Dockerfile @@ -21,6 +21,7 @@ RUN apt update && apt install -y \ RUN cd ~ && git clone --depth 1 'https://github.com/Exiv2/exiv2' \ && cd exiv2 && mkdir -p build && cd build \ && cmake -DCMAKE_BUILD_TYPE=Release .. "-DCMAKE_INSTALL_PREFIX=/usr" \ + -DEXIV2_ENABLE_BROTLI=OFF -DEXIV2_ENABLE_INIH=OFF \ && make -j$(grep -c ^processor /proc/cpuinfo) && make install \ && cd ~ && rm -rf exiv2 RUN cd ~ && git clone --depth 1 'https://github.com/nih-at/libzip' \