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"]