Configured Poetry to not use virtualenvs in ./.venv

Having a virtualenv in `.venv` is very convenient because many tools
automatically pick up on it. However, this then also happens during the
construction of the Docker images, which subsequently breaks.

Until a proper fix is found, it's easiest to just put the virtualenv
outside of the project.
This commit is contained in:
2020-03-19 17:42:45 +01:00
parent b6b097483a
commit acfffce48d

2
poetry.toml Normal file
View File

@@ -0,0 +1,2 @@
[virtualenvs]
in-project = false