fix(docker): fix dependency installation

This commit is contained in:
Luke Tainton 2024-11-24 10:24:44 +00:00
parent 5efa42d35d
commit ebca87230a
No known key found for this signature in database

View File

@ -12,7 +12,7 @@ RUN mkdir -p /.local && \
COPY pyproject.toml /run/pyproject.toml
COPY poetry.lock /run/poetry.lock
RUN poetry install --without dev --no-root
RUN poetry install --without dev
ENTRYPOINT ["python3", "-B", "-m", "app.main"]