add brotli to dockerfile (#58)

Co-authored-by: wiaamm <wiaamm@checkpoint.com>
This commit is contained in:
wiaam-mhameed
2026-01-15 17:36:44 +02:00
committed by GitHub
parent 3574f2ba19
commit 0412ab6fbf
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ FROM kong/kong-gateway
USER root
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential git curl zlib1g-dev ca-certificates unzip && \
build-essential git curl zlib1g-dev libbrotli-dev ca-certificates unzip && \
rm -rf /var/lib/apt/lists/*
RUN curl -sL https://github.com/USCiLab/cereal/archive/refs/tags/v1.3.2.tar.gz | tar xz && \

View File

@@ -3,7 +3,7 @@ FROM kong
USER root
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential git curl zlib1g-dev ca-certificates && \
build-essential git curl zlib1g-dev libbrotli-dev ca-certificates && \
rm -rf /var/lib/apt/lists/*
RUN curl -sL https://github.com/USCiLab/cereal/archive/refs/tags/v1.3.2.tar.gz | tar xz && \