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

celeryworker.dockerfile have to change.

po2son opened this issue · comments

celeryworker.dockerfile have to change.

# Install Poetry - before
# RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | POETRY_HOME=/opt/poetry python && \
#    cd /usr/local/bin && \
#    ln -s /opt/poetry/bin/poetry && \
#    poetry config virtualenvs.create false

↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓

# Install Poetry - changed
RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python3
ENV PATH="/opt/poetry/bin:$PATH"
RUN poetry config virtualenvs.create false

Same with backend.dockerfile

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

Thanks! This was fixed in #480 🤓

And thanks a lot for the help @willingc 🙇

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