Skip to content

Commit

Permalink
Migrate from Debian Buster to Bookworm base image (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
andmat900 authored Jun 12, 2024
1 parent 079f8e0 commit 661697e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.log_listener
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 661697e

Please sign in to comment.