Skip to content

Commit

Permalink
chore(deps): bump python from 3.12.7-slim-bookworm to 3.13.0-slim-boo…
Browse files Browse the repository at this point in the history
…kworm (#155)

* chore(deps): bump python

Bumps python from 3.12.7-slim-bookworm to 3.13.0-slim-bookworm.

---
updated-dependencies:
- dependency-name: python
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix: Update to Python 3.13

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Manoel Carvalho <manoelhc@gmail.com>
  • Loading branch information
dependabot[bot] and manoelhc authored Oct 14, 2024
1 parent 16867cd commit 47403d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Builder
FROM python:3.12.7-slim-bookworm AS builder
FROM python:3.13.0-slim-bookworm AS builder
LABEL org.opencontainers.image.source="https://github.com/docker-library/python"
LABEL org.opencontainers.image.description="Python 3.12"
LABEL org.opencontainers.image.description="Python 3.13"
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential=12.9 \
Expand All @@ -20,7 +20,7 @@ RUN pip install --cache-dir=/tmp /manocorp --force-reinstall --target=/packages
RUN python -m compileall .

# Final
FROM python:3.12.7-slim-bookworm
FROM python:3.13.0-slim-bookworm
WORKDIR /app
COPY --from=builder --chown=root:root /packages /packages
COPY --from=builder --chown=root:root /app /app
Expand Down

0 comments on commit 47403d5

Please sign in to comment.