chore(gitpod): Pin python version to 3.11

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2605>
This commit is contained in:
Georg Krause 2023-11-02 11:09:03 +01:00 committed by Marge
parent 1933a06cc0
commit 66bd79b613
1 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,8 @@ USER gitpod
RUN sudo apt update -y \ RUN sudo apt update -y \
&& sudo apt install libsasl2-dev libldap2-dev libssl-dev ffmpeg gettext -y && sudo apt install libsasl2-dev libldap2-dev libssl-dev ffmpeg gettext -y
RUN pyenv install 3.11 && pyenv global 3.11
RUN pip install poetry pre-commit \ RUN pip install poetry pre-commit \
&& poetry config virtualenvs.create true \ && poetry config virtualenvs.create true \
&& poetry config virtualenvs.in-project true && poetry config virtualenvs.in-project true