Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions dockerfiles/api.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Litestar Serving Image
# Optimized for Cloud Run (~250MB)

FROM python:3.13-slim AS builder
FROM python:3.14-slim AS builder

WORKDIR /app

Expand All @@ -14,7 +14,7 @@ RUN uv venv /opt/venv && \
uv pip install --python /opt/venv/bin/python -r pyproject.toml --extra api

# Production image
FROM python:3.13-slim
FROM python:3.14-slim

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/data.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Data Simulation and dbt Image (~220MB)

FROM python:3.13-slim AS builder
FROM python:3.14-slim AS builder

WORKDIR /app

Expand All @@ -18,7 +18,7 @@ RUN uv venv /opt/venv && \
uv pip install --python /opt/venv/bin/python -r pyproject.toml --extra data

# Production image
FROM python:3.13-slim
FROM python:3.14-slim

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/ml.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ML Training Image
# Includes CatBoost, Evidently, MLflow (~550MB)

FROM python:3.13-slim AS builder
FROM python:3.14-slim AS builder

WORKDIR /app

Expand All @@ -14,7 +14,7 @@ RUN uv venv /opt/venv && \
uv pip install --python /opt/venv/bin/python -r pyproject.toml --extra ml

# Production image
FROM python:3.13-slim
FROM python:3.14-slim

WORKDIR /app

Expand Down
Loading