From e153d8a93d866a596de7c81cf78be0205ea2d1cd Mon Sep 17 00:00:00 2001 From: dogauzuncukoglu Date: Sun, 28 Jul 2024 13:36:48 +0300 Subject: [PATCH] update builder and runner to debian 11.6->11.9 --- docker/debian/base/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/debian/base/Dockerfile b/docker/debian/base/Dockerfile index 8714f79c85..642a8e592f 100644 --- a/docker/debian/base/Dockerfile +++ b/docker/debian/base/Dockerfile @@ -10,7 +10,7 @@ RUN wget -qO foundationdb-clients.deb https://github.com/apple/foundationdb/rele RUN wget -qO tini https://github.com/krallin/tini/releases/download/v0.19.0/tini # Debian builder -FROM debian:11.6 as debian-builder +FROM debian:11.9 as debian-builder LABEL description="Debian image for compiling" LABEL org.opencontainers.image.source="https://github.com/ByConity/ByConity" @@ -39,7 +39,7 @@ RUN ldconfig ENV CC=clang-11 CXX=clang++-11 # Base runner image -FROM debian:11.6-slim as debian-runner +FROM debian:11.9-slim as debian-runner LABEL description="Base Debian image for runtime" LABEL org.opencontainers.image.source="https://github.com/ByConity/ByConity"