Skip to content
Closed
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.agents-test
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# docker compose -f docker-compose.agents-test.yml run agents
# docker compose -f docker-compose.agents-test.yml run agents pytest tests/unit/ -v

FROM python:3.11-slim
FROM python:3.14-slim

# Keep Python output unbuffered so pytest output streams in real-time
ENV PYTHONUNBUFFERED=1 \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.builder
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ARG NODE_IMAGE=node:20.18.1-bookworm-slim
FROM ${NODE_IMAGE} as node

FROM python:3.11-slim-bookworm as base
FROM python:3.14-slim-bookworm as base

# Install system dependencies
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.production
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
ARG NODE_IMAGE=node:20.18.1-bookworm-slim
FROM ${NODE_IMAGE} as node

FROM python:3.11-slim-bookworm as base
FROM python:3.14-slim-bookworm as base

# Install system dependencies in a single layer with cache cleanup
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand Down
Loading