Skip to content

Commit de88e36

Browse files
committed
Merge branch 'igornovg/update-nginx-mods' into 'master'
BOUN-735: bump nginx module vers (fix principal parsing) Principal parsing fails in cb0r library if strings are longer than 23 bytes. Fix that and update base Dockerfile with new module versions See merge request dfinity-lab/public/ic!12208
2 parents d1a6e61 + 418afad commit de88e36

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

ic-os/boundary-guestos/rootfs/Dockerfile.base

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -83,23 +83,23 @@ RUN \
8383

8484
# Download libnginx-mod-http-ndk.deb
8585
RUN \
86-
curl -L -O https://github.com/dfinity/nginx-modules/releases/download/v0.1.0/libnginx-mod-http-ndk_0.3.1_amd64.deb && \
87-
echo "c807ac06ce3ffbbfda9845dbd70d59d5b3180913b0ba8ef3e89f3da4e7818a68 libnginx-mod-http-ndk_0.3.1_amd64.deb" | shasum -c
86+
curl -L -O https://github.com/dfinity/nginx-modules/releases/download/v0.1.1/libnginx-mod-http-ndk_0.3.1_amd64.deb && \
87+
echo "f71c7c342ac54718809c952b230690a89501b384ee1e07c0f33cfb3301e0ef7b libnginx-mod-http-ndk_0.3.1_amd64.deb" | shasum -c
8888

8989
# Download libnginx-mod-http-cbor-input.deb
9090
RUN \
91-
curl -L -O https://github.com/dfinity/nginx-modules/releases/download/v0.1.0/libnginx-mod-http-cbor-input_0.1.0_amd64.deb && \
92-
echo "7d454a87da8a38c2d7b17d791186e2a512cbc9d2f64c502248e80a8a97781a2b libnginx-mod-http-cbor-input_0.1.0_amd64.deb" | shasum -c
91+
curl -L -O https://github.com/dfinity/nginx-modules/releases/download/v0.1.1/libnginx-mod-http-cbor-input_0.1.1_amd64.deb && \
92+
echo "f90c9ff32542763c35f2a14cdb3127c298202c8ec5b1a4115fdabf32d147b9e3 libnginx-mod-http-cbor-input_0.1.1_amd64.deb" | shasum -c
9393

9494
# Download libnginx-mod-http-cbor-req-ic.deb
9595
RUN \
96-
curl -L -O https://github.com/dfinity/nginx-modules/releases/download/v0.1.0/libnginx-mod-http-cbor-req-ic_0.1.0_amd64.deb && \
97-
echo "86c7a6ce4d3ee5c4251778f85732e415db7672ac9641bd39bdf35a1cbae2b88a libnginx-mod-http-cbor-req-ic_0.1.0_amd64.deb" | shasum -c
96+
curl -L -O https://github.com/dfinity/nginx-modules/releases/download/v0.1.1/libnginx-mod-http-cbor-req-ic_0.1.1_amd64.deb && \
97+
echo "8cb4cc1572a9a98372323ba0665c3b08555d9ce6a0c4b1d732c0e63ef6de627a libnginx-mod-http-cbor-req-ic_0.1.1_amd64.deb" | shasum -c
9898

9999
# Download libnginx-mod-http-cbor-resp-ic.deb
100100
RUN \
101-
curl -L -O https://github.com/dfinity/nginx-modules/releases/download/v0.1.0/libnginx-mod-http-cbor-resp-ic_0.1.0_amd64.deb && \
102-
echo "aae648fd0e5687ea11a1582686dfcc7a48c2a7eed307f72f38d9de8926fce30a libnginx-mod-http-cbor-resp-ic_0.1.0_amd64.deb" | shasum -c
101+
curl -L -O https://github.com/dfinity/nginx-modules/releases/download/v0.1.1/libnginx-mod-http-cbor-resp-ic_0.1.1_amd64.deb && \
102+
echo "324b1a9bda6e0210c6b3bb3d1dee816a122c43069f0cc5730868072e06ddd38a libnginx-mod-http-cbor-resp-ic_0.1.1_amd64.deb" | shasum -c
103103

104104
# Download and build sev-guest tool
105105
RUN \
@@ -311,22 +311,22 @@ RUN \
311311
rm libnginx-mod-http-ndk_0.3.1_amd64.deb
312312

313313
# Install libnginx-mod-http-cbor-input
314-
COPY --from=download /tmp/libnginx-mod-http-cbor-input_0.1.0_amd64.deb .
314+
COPY --from=download /tmp/libnginx-mod-http-cbor-input_0.1.1_amd64.deb .
315315
RUN \
316-
dpkg -i libnginx-mod-http-cbor-input_0.1.0_amd64.deb && \
317-
rm libnginx-mod-http-cbor-input_0.1.0_amd64.deb
316+
dpkg -i libnginx-mod-http-cbor-input_0.1.1_amd64.deb && \
317+
rm libnginx-mod-http-cbor-input_0.1.1_amd64.deb
318318

319319
# Install libnginx-mod-http-cbor-req-ic
320-
COPY --from=download /tmp/libnginx-mod-http-cbor-req-ic_0.1.0_amd64.deb .
320+
COPY --from=download /tmp/libnginx-mod-http-cbor-req-ic_0.1.1_amd64.deb .
321321
RUN \
322-
dpkg -i libnginx-mod-http-cbor-req-ic_0.1.0_amd64.deb && \
323-
rm libnginx-mod-http-cbor-req-ic_0.1.0_amd64.deb
322+
dpkg -i libnginx-mod-http-cbor-req-ic_0.1.1_amd64.deb && \
323+
rm libnginx-mod-http-cbor-req-ic_0.1.1_amd64.deb
324324

325325
# Install libnginx-mod-http-cbor-resp-ic
326-
COPY --from=download /tmp/libnginx-mod-http-cbor-resp-ic_0.1.0_amd64.deb .
326+
COPY --from=download /tmp/libnginx-mod-http-cbor-resp-ic_0.1.1_amd64.deb .
327327
RUN \
328-
dpkg -i libnginx-mod-http-cbor-resp-ic_0.1.0_amd64.deb && \
329-
rm libnginx-mod-http-cbor-resp-ic_0.1.0_amd64.deb
328+
dpkg -i libnginx-mod-http-cbor-resp-ic_0.1.1_amd64.deb && \
329+
rm libnginx-mod-http-cbor-resp-ic_0.1.1_amd64.deb
330330

331331
# Install ngx_http_geoip2
332332
COPY --from=ngx_http_geoip2_module \

0 commit comments

Comments
 (0)