diff --git a/docker/setup/Dockerfile b/docker/setup/Dockerfile index 3e05779..8cdc9b3 100644 --- a/docker/setup/Dockerfile +++ b/docker/setup/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM python:3.13.5-slim AS builder +FROM python:3.14-rc-alpine3.20 AS builder # Install build dependencies RUN apt-get update && apt-get install -y \ @@ -17,7 +17,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Runtime stage -FROM python:3.13.5-slim +FROM python:3.14-rc-alpine3.20 # Install runtime dependencies RUN apt-get update && apt-get install -y \