From 2a82893eeb3e22d5e18d60da7a320108cffa7f3c Mon Sep 17 00:00:00 2001 From: Diwank Singh Tomer Date: Sat, 28 Sep 2024 11:46:57 -0400 Subject: [PATCH] fix: Minor fix to agents-api/Dockerfile Signed-off-by: Diwank Singh Tomer --- agents-api/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/agents-api/Dockerfile b/agents-api/Dockerfile index c98074795..90432df12 100644 --- a/agents-api/Dockerfile +++ b/agents-api/Dockerfile @@ -13,10 +13,8 @@ RUN pip install 'poetry>=1.8.0,<1.9.0' \ COPY pyproject.toml poetry.lock ./ -RUN poetry install --no-dev +RUN poetry install --no-dev --no-root COPY . ./ -RUN poetry install --no-dev - ENTRYPOINT ["python", "-m", "agents_api.web", "--host", "0.0.0.0", "--port", "8080"]