https://github.com/seasawher/poetry-devcontainer
template for setting up poetry in devcontainer
https://github.com/seasawher/poetry-devcontainer
devcontainer devcontainer-template docker poetry python template-project
Last synced: 4 months ago
JSON representation
template for setting up poetry in devcontainer
- Host: GitHub
- URL: https://github.com/seasawher/poetry-devcontainer
- Owner: Seasawher
- Created: 2023-08-19T07:59:54.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-23T16:30:13.000Z (over 2 years ago)
- Last Synced: 2025-10-10T13:38:57.703Z (4 months ago)
- Topics: devcontainer, devcontainer-template, docker, poetry, python, template-project
- Language: Dockerfile
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Poetry Devcontainer
There are various obstacles to using Poetry with Devcontainer.
* Poetry creates a virtual environment by default, but this should be turned off when using Docker.
* Depending on the base image, there may be a problem where the Python environment used by Poetry differs from the Python environment on the system. This will result in packages added with `poetry add` not being usable.
* After installing Poetry, you need to update your PATH yourself as it is not automatically updated..
With this template, the above problems have already been solved, so you don't have to spend time solving them. 👍