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 docker/backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-slim
FROM python:3.14-slim

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker/base-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# slim). This eliminates the dependency on ppa:deadsnakes/ppa, which has
# no SLA and historically blocked deployment of critical agent-runtime
# fixes for days at a time when the PPA was unreachable. See #658.
FROM python:3.13-slim-bookworm
FROM python:3.14-slim-bookworm

# Version tracking - set at build time via --build-arg VERSION=x.y.z
ARG VERSION=latest
Expand Down
2 changes: 1 addition & 1 deletion docker/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24-alpine
FROM node:26-alpine

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker/frontend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Multi-stage build: npm build → nginx serving static assets

# Stage 1: Build
FROM node:24-alpine AS builder
FROM node:26-alpine AS builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker/scheduler/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Trinity Scheduler Service Dockerfile
# Standalone scheduler for agent task execution

FROM python:3.13-slim
FROM python:3.14-slim

# Set working directory
WORKDIR /app
Expand Down
Loading