diff --git a/Dockerfile b/Dockerfile index a0cdfc8..f1d8074 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Multi-stage Dockerfile for DagLab # Stage 1: Build stage -FROM python:3.11-slim as builder +FROM python:3.13-slim as builder # Install build dependencies RUN apt-get update && apt-get install -y \ @@ -26,7 +26,7 @@ COPY . . RUN python -m build --wheel --outdir /wheels # Stage 2: Runtime stage -FROM python:3.11-slim +FROM python:3.13-slim # Install runtime dependencies RUN apt-get update && apt-get install -y \