Merge pull request #1951 from nghttp2/docker-debian12

docker: Bump base image to debian 12
This commit is contained in:
Tatsuhiro Tsujikawa
2023-09-15 21:41:10 +09:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
FROM debian:11 as build FROM debian:12 as build
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
@@ -63,7 +63,7 @@ RUN git clone --depth 1 https://github.com/nghttp2/nghttp2.git && \
cd .. && \ cd .. && \
rm -rf nghttp2 rm -rf nghttp2
FROM gcr.io/distroless/base-debian11 FROM gcr.io/distroless/base-debian12
COPY --from=build \ COPY --from=build \
/usr/local/share/nghttp2/ \ /usr/local/share/nghttp2/ \