From 65645ad063051801f44e9c609b7e88c4cc90e0ed Mon Sep 17 00:00:00 2001 From: Goldy <153996346+g0ldyy@users.noreply.github.com> Date: Sun, 30 Jun 2024 10:58:54 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4a588fd..6bb8d75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,4 +25,7 @@ RUN pip install poetry COPY . . RUN poetry install --no-cache --no-root --without dev -ENTRYPOINT ["poetry", "run", "python", "-m", "comet.main"] \ No newline at end of file +ENV VIRTUAL_ENV=/app/.venv +ENV PATH="/app/.venv/bin:$PATH" + +ENTRYPOINT ["poetry", "run", "python", "-m", "comet.main"]