2023-11-01 10:48:54 +00:00
|
|
|
FROM gitpod/workspace-full:2023-10-25-20-43-33
|
2022-07-17 02:06:25 +00:00
|
|
|
USER gitpod
|
|
|
|
|
|
|
|
RUN sudo apt update -y \
|
2022-07-21 19:36:08 +00:00
|
|
|
&& sudo apt install libsasl2-dev libldap2-dev libssl-dev ffmpeg gettext -y
|
2022-07-17 02:06:25 +00:00
|
|
|
|
2023-11-02 10:09:03 +00:00
|
|
|
RUN pyenv install 3.11 && pyenv global 3.11
|
|
|
|
|
2023-12-05 08:31:55 +00:00
|
|
|
RUN pip install poetry pre-commit jinja2 towncrier \
|
2022-07-17 02:06:25 +00:00
|
|
|
&& poetry config virtualenvs.create true \
|
2022-11-18 21:12:21 +00:00
|
|
|
&& poetry config virtualenvs.in-project true
|