Update Dockerfile to use Python 3.14.1

This commit is contained in:
Christian Krakau-Louis
2025-12-09 19:11:19 +01:00
committed by GitHub
parent 270d65d74d
commit f4397138f8
+2 -1
View File
@@ -1,5 +1,5 @@
# Use multi-stage build for a smaller final image
FROM python:3.13 AS builder
FROM python:3.14.1 AS builder
WORKDIR /app
@@ -38,3 +38,4 @@ EXPOSE 8000
# Default command
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]