From 32eaaaa4e2ac1c8e57b8c53a8ef458160bd104ee Mon Sep 17 00:00:00 2001 From: Jordan Adler Date: Fri, 10 Jul 2020 02:00:41 +0000 Subject: [PATCH] switch to tag for py39 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5307b4a2..644f13b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,8 +29,8 @@ RUN PATH=/opt/pyenv/bin:$PATH pyenv install 3.7.7 RUN virtualenv /root/py37 --python /opt/pyenv/versions/3.7.7/bin/python RUN PATH=/opt/pyenv/bin:$PATH pyenv install 3.8.3 RUN virtualenv /root/py38 --python /opt/pyenv/versions/3.8.3/bin/python -RUN PATH=/opt/pyenv/bin:$PATH pyenv install 3.9.0b1 -RUN virtualenv /root/py39 --python /opt/pyenv/versions/3.9.0a6/bin/python +RUN PATH=/opt/pyenv/bin:$PATH pyenv install 3.9-dev +RUN virtualenv /root/py39 --python /opt/pyenv/versions/3.9-dev/bin/python RUN ln -s /usr/bin/python3 /usr/bin/python ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8