File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ RUN /app/plugins/build.sh
8989
9090
9191
92- FROM python:3.13-slim-bookworm AS api-dev
92+ FROM python:3.13-slim-trixie AS api-dev
9393
9494# Get a list a preinstalled apt packages
9595RUN mkdir /src && \
@@ -118,8 +118,8 @@ RUN apt-get update \
118118 unzip \
119119 wget \
120120 postgresql-client \
121- && echo 'Types: deb\n URIs: http://snapshot.debian.org/archive/debian/20250301T010101Z/\n Suites: testing \n Components: main\n Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg' > /etc/apt/sources.list.d/snapshot.sources \
122- && echo 'Package: ghostscript\n Pin: version 10.04.0~dfsg-2 \n Pin-Priority: 1001' > /etc/apt/preferences.d/ghostscript \
121+ && echo 'Types: deb\n URIs: http://snapshot.debian.org/archive/debian/20250301T010101Z/\n Suites: trixie \n Components: main\n Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg' > /etc/apt/sources.list.d/snapshot.sources \
122+ && echo 'Package: ghostscript libgs10 libgs10-common libgs-common \n Pin: version 10.04.0* \n Pin-Priority: 1001' > /etc/apt/preferences.d/ghostscript \
123123 && echo 'Acquire::Check-Valid-Until "false";' > /etc/apt/apt.conf.d/10no-check-valid-until \
124124 && apt-get update \
125125 && apt-get install -y --no-install-recommends ghostscript \
@@ -143,7 +143,7 @@ ENV PYTHONUNBUFFERED=on \
143143
144144COPY api/pyproject.toml api/poetry.lock /app/api/
145145RUN python3 -m venv /opt/poetry \
146- && /opt/poetry/bin/pip install --no-cache poetry==2.1.2 \
146+ && /opt/poetry/bin/pip install --no-cache poetry==2.1.4 \
147147 && /opt/poetry/bin/poetry config virtualenvs.create false \
148148 && /opt/poetry/bin/poetry install --directory=/app/api --no-cache --no-interaction --no-root \
149149 && rm -rf /opt/poetry
You can’t perform that action at this time.
0 commit comments