This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Update Poetry Installation Documentation for Dockerfile examples #86
Labels
You can continue the conversation there. Go to discussion →
Hello!
I'm reaching out because I ran into some issues installing Poetry dependencies yesterday.
I realized that my issue was caused as a result of Poetry updating and deprecating the preferred installation method from:
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
to
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
I couldn't figure out my issue until taking a closer look at the directories. Downside, I spent a day on this; upside, I learned.
From tinkering around with the Dockerfile I discovered that:
get-poetry.py
, we have the following folder/opt/poetry/env
install-poetry.py
, we have/opt/poetry/venv
poetry install
to improperly installI had no idea until taking a closer look (see Dockerfile below, or gist).
As such, I wanted to raise this issue and make this comment in case any other people are having similar issues with the new
install-poetry.py
method. This issue is also raised here, but in poetry's channelThanks for everything!
JD
The text was updated successfully, but these errors were encountered: