File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1- FROM python:3.12-slim AS base
1+ ARG BASE_IMAGE=python:3.13-slim
2+ FROM $BASE_IMAGE AS base
23
34RUN apt-get update && apt-get install -y curl \
45 && rm -rf /var/lib/apt/lists/*
@@ -13,7 +14,6 @@ ENV PYTHONPATH=/app
1314
1415COPY ./pyproject.toml ./poetry.lock* /app/
1516
16- RUN pip install --upgrade pip setuptools wheel packaging
1717RUN --mount=type=cache,target=/root/.cache/pypoetry \
1818 poetry install \
1919 --no-root \
Original file line number Diff line number Diff line change 1- ARG BASE_IMAGE=python:3.12 -slim
1+ ARG BASE_IMAGE=python:3.13 -slim
22FROM $BASE_IMAGE AS base
33
44RUN apt-get update && apt-get install -y curl \
@@ -14,7 +14,6 @@ ENV PYTHONPATH=/app
1414
1515COPY ./pyproject.toml ./poetry.lock* /app/
1616
17- RUN pip install --upgrade pip setuptools wheel packaging
1817RUN --mount=type=cache,target=/root/.cache/pypoetry \
1918 poetry install \
2019 --no-root \
Original file line number Diff line number Diff line change 1- ARG BASE_IMAGE=python:3.12 -slim
1+ ARG BASE_IMAGE=python:3.13 -slim
22FROM $BASE_IMAGE AS base
33
44ENV DEBIAN_FRONTEND=noninteractive
You can’t perform that action at this time.
0 commit comments