From ebca87230abf5ac8b02d46874c1470b94f864aae Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Sun, 24 Nov 2024 10:24:44 +0000 Subject: [PATCH] fix(docker): fix dependency installation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8874974..661e8fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]