We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e8802 commit 4040484Copy full SHA for 4040484
backend-py/Dockerfile
@@ -1,5 +1,8 @@
1
-# Use the official Python image with UV pre-installed
2
-FROM ghcr.io/astral-sh/uv:python3.14-bookworm-slim AS build
+# Use Python 3.14.1 base image and install uv
+FROM python:3.14.1-slim-bookworm AS build
3
+
4
+# Install uv
5
+RUN pip install --no-cache-dir uv
6
7
# Set environment variables for UV
8
ENV UV_COMPILE_BYTECODE=1 \
@@ -27,7 +30,7 @@ COPY src ./src
27
30
RUN uv sync --frozen --no-dev
28
31
29
32
# Production stage
-FROM python:3.14.2-slim-bookworm AS deploy
33
+FROM python:3.14.1-slim-bookworm AS deploy
34
35
# Set environment variables
36
ENV PYTHONUNBUFFERED=1 \
0 commit comments