diff --git a/backend/Dockerfile b/backend/Dockerfile index ccd04ba..bbb8ac1 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -25,7 +25,7 @@ COPY . /backend COPY ./utils/docker/entrypoint.sh /entrypoint.sh WORKDIR /backend -RUN poetry install --no-interaction --no-dev +RUN poetry install --no-interaction --only main ENV DJANGO_APP="kernelCI" diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 6f504e4..5e4afd9 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -4,6 +4,7 @@ version = "0.1.0" description = "Django Backend" authors = ["Your Name "] readme = "README.md" +packages = [{ include = 'kernelCI' }] [tool.poetry.dependencies] python = "^3.12"