From 661697e45340ebd0e8f46c88d4f06db65b0f6431 Mon Sep 17 00:00:00 2001 From: Andrei Matveyeu Date: Wed, 12 Jun 2024 08:07:26 +0200 Subject: [PATCH] Migrate from Debian Buster to Bookworm base image (#64) --- Dockerfile | 4 ++-- Dockerfile.log_listener | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index ad30cd7..3d731fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.9-buster AS build +FROM python:3.9-bookworm AS build COPY . /src WORKDIR /src/projects/etos_suite_runner RUN python3 setup.py bdist_wheel -FROM python:3.9-slim-buster +FROM python:3.9-slim-bookworm COPY --from=build /src/projects/etos_suite_runner/dist/*.whl /tmp # hadolint ignore=DL3013 diff --git a/Dockerfile.log_listener b/Dockerfile.log_listener index 982e69a..6e3edb8 100644 --- a/Dockerfile.log_listener +++ b/Dockerfile.log_listener @@ -1,10 +1,10 @@ -FROM python:3.9.0-buster AS build +FROM python:3.9-bookworm AS build COPY . /src WORKDIR /src/projects/log_listener RUN python3 setup.py bdist_wheel -FROM python:3.9.0-slim-buster +FROM python:3.9-slim-bookworm COPY --from=build /src/projects/log_listener/dist/*.whl /tmp # hadolint ignore=DL3013