Skip to content

Commit

Permalink
Update base image versions in Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
julianocosta89 committed Jan 16, 2024
1 parent 8b2bbe1 commit 7da7db5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/loadgenerator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# SPDX-License-Identifier: Apache-2.0


FROM python:3.12-slim-bullseye as base
FROM python:3.12-slim-bookworm as base

FROM base as builder
RUN apt-get update \
RUN apt-get -qq update \
&& apt-get install -y --no-install-recommends g++ \
&& rm -rf /var/lib/apt/lists/*

Expand Down
4 changes: 2 additions & 2 deletions src/recommendationservice/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# SPDX-License-Identifier: Apache-2.0


FROM python:3.12-slim-bullseye as base
FROM python:3.12-slim-bookworm as base

#
# Fetch requirements
#
FROM base as builder
RUN apt-get update \
RUN apt-get -qq update \
&& apt-get install -y --no-install-recommends g++ \
&& rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 7da7db5

Please sign in to comment.