tiangolo / full-stack-fastapi-template

Full stack, modern web application template. Using FastAPI, React, SQLModel, PostgreSQL, Docker, GitHub Actions, automatic HTTPS and more.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

get-poetry does not work

denpetrov opened this issue · comments

same problem

btw, #485 may fix this but it's still not merged

update backend/backend.dockerfile and backend/celeryworker.dockerfile two files
replace:

RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python
cd /usr/local/bin && \
ln -s /opt/poetry/bin/poetry && \
poetry config virtualenvs.create false

to:

RUN pip install poetry && \
poetry config virtualenvs.create false

PRs #524 and #529 for the corrected files if you want to take a look.

Thanks! This was solved in #480 🎉

And thanks @willingc! 🍰

Assuming the original issue was solved, it will be automatically closed now. But feel free to add more comments or create new issues.