aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2023-09-11 13:19:32 +0100
committerGravatar Chris Lovering <[email protected]>2023-09-11 13:19:32 +0100
commitba27ef8095246bf7bcf58a3b2cc09235fba26e5b (patch)
treec9d4802cc7e21459c6d0b57a17f082479d10d77c
parentMerge pull request #186 from python-discord/update-eval-deps (diff)
Bump python versions used by snekbox to latest
3.11.5 requires at least pyenv 2.3.25, so bumped to latest (2.3.26) for good measure anyway. 3.12.0rc2 requires pyenv 2.3.25
-rw-r--r--Dockerfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 4fe056d..3fed387 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -33,13 +33,13 @@ COPY --link scripts/build_python.sh /
# ------------------------------------------------------------------------------
FROM builder-py-base as builder-py-3_11
-RUN git clone -b v2.3.24 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT \
- && /build_python.sh 3.11.4
+RUN git clone -b v2.3.26 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT \
+ && /build_python.sh 3.11.5
# ------------------------------------------------------------------------------
FROM builder-py-base as builder-py-3_12
-RUN git clone -b v2.3.24 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT \
- && /build_python.sh 3.12.0rc1
+RUN git clone -b v2.3.26 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT \
+ && /build_python.sh 3.12.0rc2
# ------------------------------------------------------------------------------
FROM python:3.11-slim-buster as base