chore: upgrade to Python 3.13 & run update

This commit is contained in:
ducklet 2025-05-15 21:56:18 +02:00
parent 2814be8975
commit 2ce8924d1b
10 changed files with 731 additions and 518 deletions

View file

@ -13,8 +13,9 @@ WORKDIR /var/app
COPY build/requirements.txt ./
RUN pip install --no-cache-dir --upgrade \
--requirement requirements.txt
RUN pip install --no-cache-dir \
--require-hashes \
--requirement requirements.txt
USER 10000:10001