Skip to content

Commit

Permalink
Update base image and use Python 3.13 (#45)
Browse files Browse the repository at this point in the history
* Update base image
* Use Python 3.13 for container setup
  • Loading branch information
mattclay authored Oct 3, 2024
1 parent b0a717f commit 21ead74
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,4 +1,4 @@
FROM quay.io/bedrock/ubuntu:noble-20240801
FROM quay.io/bedrock/ubuntu:noble-20240904.1

# Prevent automatic apt cache cleanup, as caching is desired when running integration tests.
# Instead, when installing packages during container builds, explicit cache cleanup is required.
Expand Down Expand Up @@ -86,5 +86,5 @@ CMD ["/sbin/init"]

# Install pip last to speed up local container rebuilds.
COPY files/*.py /usr/share/container-setup/
RUN ln -s /usr/bin/python3.12 /usr/share/container-setup/python
RUN ln -s /usr/bin/python3.13 /usr/share/container-setup/python
RUN /usr/share/container-setup/python -B /usr/share/container-setup/setup.py

0 comments on commit 21ead74

Please sign in to comment.