From b08b4ee9557f22d47ce7246ff334623304f39898 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Kabakc=C4=B1?= Date: Fri, 11 Oct 2024 21:06:29 +0100 Subject: [PATCH] add poetry lock --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 32902e5..4bbec74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY pyproject.toml poetry.lock ${LAMBDA_TASK_ROOT} # Needed to save time and avoid build issues in Lambda RUN poetry config virtualenvs.create false --local # Install the dependencies first, so that we can cache them. -RUN poetry install --no-dev +RUN poetry install -only main # Copy everything. (Note: If needed, we can use .dockerignore to limit what's copied.) COPY . ${LAMBDA_TASK_ROOT}