Skip to content

Commit

Permalink
Bump python from 3.11-slim to 3.12-slim
Browse files Browse the repository at this point in the history
Bumps python from 3.11-slim to 3.12-slim.

---
updated-dependencies:
- dependency-name: python
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and LawiK974 committed Mar 22, 2024
1 parent 6cf011d commit 1d232b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Builder stage where the package is built using Poetry
FROM python:3.11-slim as builder
FROM python:3.12-slim as builder

WORKDIR /app
RUN pip install poetry
Expand All @@ -12,7 +12,7 @@ RUN poetry install --no-root --no-dev
RUN poetry build

# Stage 2: Lightweight production stage with minimal footprint
FROM python:3.11-slim as production
FROM python:3.12-slim as production
WORKDIR /app
COPY --from=builder /app/dist/*.whl /app/
RUN pip install --no-cache-dir /app/*.whl
Expand Down

0 comments on commit 1d232b4

Please sign in to comment.