diff --git a/Dockerfile b/Dockerfile index b76cc00..b6cc6cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ # docker run -v darwin-data:/data -p 8787:8787 darwin-agentic-cloud # ---- Stage 1: build dependencies and install darwin ---- -FROM python:3.12-slim AS builder +FROM python:3.14-slim AS builder ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 \ @@ -35,7 +35,7 @@ RUN uv venv /opt/darwin --python 3.12 && \ uv pip install --python /opt/darwin/bin/python . # ---- Stage 2: runtime ---- -FROM python:3.12-slim AS runtime +FROM python:3.14-slim AS runtime ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 \