Skip to content

Commit 7a5791e

Browse files
Bump python from 3.12.5-slim to 3.13.2-slim (#532)
* Bump python from 3.12.5-slim to 3.13.2-slim Bumps python from 3.12.5-slim to 3.13.2-slim. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Upgrade dependencies broken by 3.13 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sea-kelp <[email protected]>
1 parent dc3b249 commit 7a5791e

File tree

3 files changed

+154
-156
lines changed

3 files changed

+154
-156
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12.5-slim AS base
1+
FROM python:3.13.2-slim AS base
22
ARG IS_PROD
33
ENV DEBIAN_FRONTEND noninteractive
44
ENV PIP_NO_CACHE_DIR=1
@@ -9,14 +9,14 @@ ENV PYTHONUNBUFFERED=1
99
WORKDIR /usr/src/app
1010

1111
# Install packages depending on ENV arg from docker-compose
12-
ARG PACKAGES_TO_INSTALL="gcc libpq-dev libjpeg62-turbo-dev libsqlite3-0 zlib1g-dev"
12+
ARG PACKAGES_TO_INSTALL="gcc libpq-dev libjpeg62-turbo-dev libsqlite3-0 zlib1g-dev cargo"
1313
RUN apt-get update && \
1414
apt-get install -y -qq --no-install-recommends $PACKAGES_TO_INSTALL && \
1515
apt-get clean && \
1616
rm -rf /var/lib/apt/lists/*
1717

1818
# Add runtime dependencies to base image
19-
RUN pip3 install poetry~=1.8.0
19+
RUN pip3 install poetry~=2.1.1
2020
COPY pyproject.toml poetry.lock ./
2121
RUN if [ "$IS_PROD" = "true" ]; then \
2222
poetry install --only main --no-root; \

0 commit comments

Comments
 (0)