Skip to content

Commit ee997f2

Browse files
committed
[DOP-22120] Use Python 3.13
1 parent b0e8f63 commit ee997f2

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

docker/Dockerfile.scheduler

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM python:3.12-slim AS base
1+
ARG BASE_IMAGE=python:3.13-slim
2+
FROM $BASE_IMAGE AS base
23

34
RUN apt-get update && apt-get install -y curl \
45
&& rm -rf /var/lib/apt/lists/*
@@ -13,7 +14,6 @@ ENV PYTHONPATH=/app
1314

1415
COPY ./pyproject.toml ./poetry.lock* /app/
1516

16-
RUN pip install --upgrade pip setuptools wheel packaging
1717
RUN --mount=type=cache,target=/root/.cache/pypoetry \
1818
poetry install \
1919
--no-root \

docker/Dockerfile.server

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BASE_IMAGE=python:3.12-slim
1+
ARG BASE_IMAGE=python:3.13-slim
22
FROM $BASE_IMAGE AS base
33

44
RUN apt-get update && apt-get install -y curl \
@@ -14,7 +14,6 @@ ENV PYTHONPATH=/app
1414

1515
COPY ./pyproject.toml ./poetry.lock* /app/
1616

17-
RUN pip install --upgrade pip setuptools wheel packaging
1817
RUN --mount=type=cache,target=/root/.cache/pypoetry \
1918
poetry install \
2019
--no-root \

docker/Dockerfile.worker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BASE_IMAGE=python:3.12-slim
1+
ARG BASE_IMAGE=python:3.13-slim
22
FROM $BASE_IMAGE AS base
33

44
ENV DEBIAN_FRONTEND=noninteractive

0 commit comments

Comments
 (0)