mirror of
https://github.com/copier-org/copier.git
synced 2025-05-05 15:32:54 +00:00
These days, Gitpod supports VSCode workspaces instead of only Theia. Theia understands settings under `.vscode` as well as under `.theia`, but VSCode only understands settings under `.vscode`. Thus, it seems reasonable to move settings to that new location and then provide a good UX on both local VSCode and Gitpod's. I also install new tools such as commitizen. The goal is that just clicking on Gitpod badge, you have a full dev environment ready to hack.
9 lines
186 B
Docker
9 lines
186 B
Docker
FROM gitpod/workspace-full
|
|
USER gitpod
|
|
ENV PIP_USER=no POETRY_VIRTUALENVS_IN_PROJECT=true
|
|
RUN pip3 install \
|
|
commitizen \
|
|
poethepoet \
|
|
poetry \
|
|
poetry-dynamic-versioning
|