mirror of
https://github.com/micahqcade/custom_vesync.git
synced 2025-02-11 09:39:00 +01:00
9 lines
198 B
Docker
9 lines
198 B
Docker
|
FROM gitpod/workspace-full:latest
|
||
|
|
||
|
USER gitpod
|
||
|
|
||
|
RUN pyenv install 3.9.7 &&\
|
||
|
pyenv global 3.9.7 &&\
|
||
|
echo "export PIP_USER=no" >> /home/gitpod/.bashrc &&\
|
||
|
python -m pip install virtualenv
|