Skip to content

Commit

Permalink
Upgrade to Poetry 1.8.4 (#874)
Browse files Browse the repository at this point in the history
poetry upgrade
  • Loading branch information
EugeneLightsOn authored Dec 10, 2024
1 parent f6befe6 commit 81948ac
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion aws_copilot_deploy/aws-api.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion azure_compose_deploy/azure-api.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion gcp.backend.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion src/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion src/backend/debug.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 81948ac

Please sign in to comment.