diff --git a/Resources/docker/app/Dockerfile b/Resources/docker/app/Dockerfile index 01abbd227..84be534b0 100644 --- a/Resources/docker/app/Dockerfile +++ b/Resources/docker/app/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.7-alpine AS builder +FROM python:3.14.3-alpine AS builder ENV PYTHONUNBUFFERED=1 @@ -11,7 +11,7 @@ RUN apk add --no-cache --virtual .build-deps gcc g++ musl-dev \ postgresql-dev binutils rust cargo && \ python3 -m pip install -r requirements.txt --no-cache-dir -FROM python:3.13.7-alpine +FROM python:3.14.3-alpine # git is a dependency for the meta endpoint RUN apk add --no-cache git