Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# ───────────────────────────────────────────────────────────────────────────────
# Build Stage - Install Dependencies
# ───────────────────────────────────────────────────────────────────────────────
FROM python:3.13-alpine AS builder
FROM python:3.14-alpine AS builder

RUN apk add --no-cache \
gcc \
Expand All @@ -30,7 +30,7 @@ RUN pip install --no-cache-dir --prefix=/install -r requirements.txt
# ───────────────────────────────────────────────────────────────────────────────
# Test Stage - Run Tests During Build
# ───────────────────────────────────────────────────────────────────────────────
FROM python:3.13-alpine AS test
FROM python:3.14-alpine AS test

# Build dependencies for test packages
RUN apk add --no-cache \
Expand Down Expand Up @@ -59,7 +59,7 @@ RUN env -i HOME="$HOME" PATH="$PATH" PYTHONDONTWRITEBYTECODE=1 \
# ───────────────────────────────────────────────────────────────────────────────
# Production Stage - Minimal Runtime Image
# ───────────────────────────────────────────────────────────────────────────────
FROM python:3.13-alpine AS prod
FROM python:3.14-alpine AS prod

# =============================================================================
# Custom Labels
Expand Down
Loading