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 infrastructure/docker/Dockerfile.api-python
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim AS builder
FROM python:3.14-slim AS builder

# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1 \
Expand Down Expand Up @@ -47,7 +47,7 @@ COPY packages/ml/ecotrack_ml packages/ml/ecotrack_ml/
COPY apps/api-python/ecotrack_api apps/api-python/ecotrack_api/

# Create a clean runtime image
FROM python:3.11-slim
FROM python:3.14-slim

# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1 \
Expand Down
4 changes: 2 additions & 2 deletions infrastructure/docker/Dockerfile.worker
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim AS builder
FROM python:3.14-slim AS builder

# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1 \
Expand Down Expand Up @@ -47,7 +47,7 @@ COPY packages/ml/ecotrack_ml packages/ml/ecotrack_ml/
COPY apps/worker/ecotrack_worker apps/worker/ecotrack_worker/

# Create a clean runtime image
FROM python:3.11-slim
FROM python:3.14-slim

# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1 \
Expand Down
Loading