diff options
author | 2023-09-11 13:19:32 +0100 | |
---|---|---|
committer | 2023-09-11 13:19:32 +0100 | |
commit | ba27ef8095246bf7bcf58a3b2cc09235fba26e5b (patch) | |
tree | c9d4802cc7e21459c6d0b57a17f082479d10d77c /Dockerfile | |
parent | Merge 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
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |