From 8d3f669156841d3a37db23f0a517e00871b3bfa6 Mon Sep 17 00:00:00 2001 From: codejedi365 Date: Sat, 1 Nov 2025 19:08:52 -0600 Subject: [PATCH] build(deps): change github-actions container image to `python:3.14-slim-trixie` --- src/gh_action/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gh_action/Dockerfile b/src/gh_action/Dockerfile index 138b95a29..7166042ab 100644 --- a/src/gh_action/Dockerfile +++ b/src/gh_action/Dockerfile @@ -1,5 +1,5 @@ # This Dockerfile is only for GitHub Actions -FROM python:3.13-bookworm +FROM python:3.14-slim-trixie ARG WORK_DIR="/opt/psr" WORKDIR ${WORK_DIR}