Best practises for Python devcontainers with poetry #41
Unanswered
SamEdwardes
asked this question in
Q&A
Replies: 1 comment 1 reply
-
|
Use the poetry feature (to install dependences) and run |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Most of my Python projects use poetry to manage dependencies. I am wondering if anyone has suggested patterns on how to integrate poetry with devcontainers.
Currently, I have this:
.devcontainer/devcontainer.json
{ "name": "Python 3", "build": { "dockerfile": "Dockerfile", "context": "..", } }.devcontainer/Dockerfile
I imagine there are better ways to do this though. Does anyone have suggestions? A few things I would like:
Beta Was this translation helpful? Give feedback.
All reactions