diff --git a/inventory/Dockerfile b/inventory/Dockerfile index 4134f94..f3ba6fe 100644 --- a/inventory/Dockerfile +++ b/inventory/Dockerfile @@ -23,7 +23,7 @@ RUN pip install poetry # Install project dependencies RUN poetry config virtualenvs.create false \ - && poetry install --no-dev + && poetry install # Stage 2: Runtime Stage FROM python:3.11-slim diff --git a/inventory/pyproject.toml b/inventory/pyproject.toml index 97fcdbb..cee6890 100644 --- a/inventory/pyproject.toml +++ b/inventory/pyproject.toml @@ -4,6 +4,7 @@ version = "0.1.0" description = "" authors = ["Eden Federman "] readme = "README.md" +package-mode = false [tool.poetry.dependencies] python = "^3.11"