We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 384c3b2 commit 33793f4Copy full SHA for 33793f4
testkit/Dockerfile
@@ -42,9 +42,12 @@ ENV PYENV_ROOT /.pyenv
42
ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH
43
44
# Set minimum supported Python version
45
-RUN pyenv install 3.7.12
+RUN pyenv install 3.7:latest
46
+RUN pyenv install 3.8:latest
47
+RUN pyenv install 3.9:latest
48
+RUN pyenv install 3.10:latest
49
RUN pyenv rehash
-RUN pyenv global 3.7.12
50
+RUN pyenv global $(pyenv versions --bare --skip-aliases)
51
52
# Install Latest pip for each environment
53
# https://pip.pypa.io/en/stable/news/
0 commit comments