Skip to content

Commit b264582

Browse files
authored
fix(images): use bookworm for sidecar image (#476)
We were using debian trixie as a building environment for barman-cloud, but we were still using bookworm as a base image. This caused inconsistencies in the sidecar image. Now we always use bookworm. Signed-off-by: Leonardo Cecchi <[email protected]>
1 parent e40ba70 commit b264582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

containers/Dockerfile.sidecar

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN --mount=type=cache,target=/go/pkg/mod --mount=type=cache,target=/root/.cache
3737
# pip will build everything inside /usr/ since this is the case
3838
# we should build and then copy every file into a destination that will
3939
# then copy into the distroless container
40-
FROM python:3.13-slim AS pythonbuilder
40+
FROM python:3.13-slim-bookworm AS pythonbuilder
4141
COPY containers/sidecar-requirements.txt .
4242
RUN apt-get update && \
4343
apt-get install -y postgresql-common build-essential && \

0 commit comments

Comments
 (0)