diff --git a/debian-dev/Dockerfile b/debian-dev/Dockerfile index a5c810cc..0a53643f 100644 --- a/debian-dev/Dockerfile +++ b/debian-dev/Dockerfile @@ -53,6 +53,10 @@ RUN apt-get -y update --fix-missing \ libldap2-dev \ && apt-get remove --purge --auto-remove -y +COPY install-brotli.sh /install-brotli.sh +RUN chmod +x /install-brotli.sh \ + && cd / && ./install-brotli.sh && rm -rf /install-brotli.sh + WORKDIR /usr/local/apisix ENV PATH=$PATH:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin diff --git a/debian-dev/Dockerfile.local b/debian-dev/Dockerfile.local index ac5b105f..c44511b5 100644 --- a/debian-dev/Dockerfile.local +++ b/debian-dev/Dockerfile.local @@ -49,6 +49,10 @@ COPY --from=build /usr/local/apisix /usr/local/apisix COPY --from=build /usr/local/openresty /usr/local/openresty COPY --from=build /usr/bin/apisix /usr/bin/apisix +COPY install-brotli.sh /install-brotli.sh +RUN 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 WORKDIR /usr/local/apisix diff --git a/debian-dev/install-brotli.sh b/debian-dev/install-brotli.sh new file mode 100644 index 00000000..5bd2be67 --- /dev/null +++ b/debian-dev/install-brotli.sh @@ -0,0 +1,23 @@ +install_brotli () { + apt-get install -y sudo cmake wget unzip + local BORTLI_VERSION="1.1.0" + wget -q https://github.com/google/brotli/archive/refs/tags/v${BORTLI_VERSION}.zip || exit -1 + unzip v${BORTLI_VERSION}.zip && cd ./brotli-${BORTLI_VERSION} && mkdir build && cd build || exit -1 + local CMAKE=$(command -v cmake3 > /dev/null 2>&1 && echo cmake3 || echo cmake) || exit -1 + ${CMAKE} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local/brotli .. || exit -1 + sudo ${CMAKE} --build . --config Release --target install || exit -1 + if [ -d "/usr/local/brotli/lib64" ]; then + echo /usr/local/brotli/lib64 | sudo tee /etc/ld.so.conf.d/brotli.conf + else + echo /usr/local/brotli/lib | sudo tee /etc/ld.so.conf.d/brotli.conf + fi + sudo ldconfig || exit -1 + ln -sf /usr/local/brotli/bin/brotli /usr/bin/brotli + cd ../.. + rm -rf brotli-${BORTLI_VERSION} + rm -rf /v${BORTLI_VERSION}.zip + export SUDO_FORCE_REMOVE=yes + apt purge -qy cmake sudo wget unzip + apt-get remove --purge --auto-remove -y +} +install_brotli \ No newline at end of file diff --git a/debian/Dockerfile b/debian/Dockerfile index a0424385..8416c12e 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -41,6 +41,10 @@ RUN set -ex; \ && openresty -V \ && apisix version +COPY install-brotli.sh /install-brotli.sh +RUN chmod +x /install-brotli.sh \ + && cd / && ./install-brotli.sh && rm -rf /install-brotli.sh + RUN apt-get -y purge --auto-remove curl wget gnupg --allow-remove-essential WORKDIR /usr/local/apisix diff --git a/debian/install-brotli.sh b/debian/install-brotli.sh new file mode 100644 index 00000000..5bd2be67 --- /dev/null +++ b/debian/install-brotli.sh @@ -0,0 +1,23 @@ +install_brotli () { + apt-get install -y sudo cmake wget unzip + local BORTLI_VERSION="1.1.0" + wget -q https://github.com/google/brotli/archive/refs/tags/v${BORTLI_VERSION}.zip || exit -1 + unzip v${BORTLI_VERSION}.zip && cd ./brotli-${BORTLI_VERSION} && mkdir build && cd build || exit -1 + local CMAKE=$(command -v cmake3 > /dev/null 2>&1 && echo cmake3 || echo cmake) || exit -1 + ${CMAKE} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local/brotli .. || exit -1 + sudo ${CMAKE} --build . --config Release --target install || exit -1 + if [ -d "/usr/local/brotli/lib64" ]; then + echo /usr/local/brotli/lib64 | sudo tee /etc/ld.so.conf.d/brotli.conf + else + echo /usr/local/brotli/lib | sudo tee /etc/ld.so.conf.d/brotli.conf + fi + sudo ldconfig || exit -1 + ln -sf /usr/local/brotli/bin/brotli /usr/bin/brotli + cd ../.. + rm -rf brotli-${BORTLI_VERSION} + rm -rf /v${BORTLI_VERSION}.zip + export SUDO_FORCE_REMOVE=yes + apt purge -qy cmake sudo wget unzip + apt-get remove --purge --auto-remove -y +} +install_brotli \ No newline at end of file