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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Local dev image (docker-compose). Installs the full requirements.txt,
# including test deps, which the slim Dockerfile.web deliberately omits.
# Keep the base in sync with Dockerfile.web/.worker/.beat and CI (3.11).
FROM python:3.11-slim-bookworm
FROM python:3.14-slim-bookworm

# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.beat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# Issue #5 (ML Monitoring): beat fires `analyzer.tasks.monitor_ml_models`
# every 15 min; see `querygrade/celery.py:beat_schedule`.
FROM python:3.11-slim-bookworm
FROM python:3.14-slim-bookworm

ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.web
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Slim web image for Railway. ML deps live in Dockerfile.worker.
FROM python:3.11-slim-bookworm
FROM python:3.14-slim-bookworm

ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.worker
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Full Celery worker image with ML stack. Used by the Railway worker service.
FROM python:3.11-slim-bookworm
FROM python:3.14-slim-bookworm

ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
Expand Down