From 81948ac16cc3a0098be2c1eac5c4fe506a4d5858 Mon Sep 17 00:00:00 2001 From: Eugene P <144219719+EugeneLightsOn@users.noreply.github.com> Date: Tue, 10 Dec 2024 18:24:23 +0100 Subject: [PATCH] Upgrade to Poetry 1.8.4 (#874) poetry upgrade --- aws_copilot_deploy/aws-api.Dockerfile | 2 +- azure_compose_deploy/azure-api.Dockerfile | 2 +- gcp.backend.Dockerfile | 2 +- src/backend/Dockerfile | 2 +- src/backend/debug.Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/aws_copilot_deploy/aws-api.Dockerfile b/aws_copilot_deploy/aws-api.Dockerfile index 6c5df8cea2..3a5923a35f 100644 --- a/aws_copilot_deploy/aws-api.Dockerfile +++ b/aws_copilot_deploy/aws-api.Dockerfile @@ -28,7 +28,7 @@ ARG INSTALL_COMMUNITY_DEPS COPY ./pyproject.toml poetry.lock ./ # Install poetry -RUN pip install --no-cache-dir poetry==1.6.1 +RUN pip install --no-cache-dir poetry==1.8.4 # Conditional installation of dependencies RUN if [ "$INSTALL_COMMUNITY_DEPS" = "true" ]; then \ diff --git a/azure_compose_deploy/azure-api.Dockerfile b/azure_compose_deploy/azure-api.Dockerfile index 58501c3062..3fb7352686 100644 --- a/azure_compose_deploy/azure-api.Dockerfile +++ b/azure_compose_deploy/azure-api.Dockerfile @@ -29,7 +29,7 @@ COPY ./pyproject.toml poetry.lock ./ COPY ./azure_compose_deploy/api_entrypoint.sh ./ # Install poetry -RUN pip install --no-cache-dir poetry==1.6.1 +RUN pip install --no-cache-dir poetry==1.8.4 # Conditional installation of dependencies RUN if [ "$INSTALL_COMMUNITY_DEPS" = "true" ]; then \ diff --git a/gcp.backend.Dockerfile b/gcp.backend.Dockerfile index da9c0fbd49..f06a5090a0 100644 --- a/gcp.backend.Dockerfile +++ b/gcp.backend.Dockerfile @@ -34,7 +34,7 @@ ENV PORT=${port} COPY pyproject.toml poetry.lock README.md ./ # Install poetry and run poetry install -RUN pip install --no-cache-dir poetry==1.6.1 \ +RUN pip install --no-cache-dir poetry==1.8.4 \ RUN if [ "${INSTALL_COMMUNITY_DEPS,,}" == "true" ]; then \ poetry install --with community \ else \ diff --git a/src/backend/Dockerfile b/src/backend/Dockerfile index bebe0f5d88..bc761ff6c4 100644 --- a/src/backend/Dockerfile +++ b/src/backend/Dockerfile @@ -28,7 +28,7 @@ ARG INSTALL_COMMUNITY_DEPS COPY pyproject.toml poetry.lock ./ # Install poetry -RUN pip install --no-cache-dir poetry==1.6.1 +RUN pip install --no-cache-dir poetry==1.8.4 # Conditional installation of dependencies RUN if [ "$INSTALL_COMMUNITY_DEPS" = "true" ]; then \ diff --git a/src/backend/debug.Dockerfile b/src/backend/debug.Dockerfile index 329098d7e5..4b509f59a0 100644 --- a/src/backend/debug.Dockerfile +++ b/src/backend/debug.Dockerfile @@ -32,7 +32,7 @@ COPY docker_scripts/debugrun-entrypoint.sh ./debugrun-entrypoint.sh RUN ["chmod", "+x", "./debugrun-entrypoint.sh"] # Install poetry -RUN pip install --no-cache-dir poetry==1.6.1 +RUN pip install --no-cache-dir poetry==1.8.4 # Conditional installation of dependencies RUN if [ "$INSTALL_COMMUNITY_DEPS" = "true" ]; then \ if [ "$DEBUGGER_IDE" = "vscode" ]; then \