From 5a81e2b92c95e0d9c63b815dd4166017b5bd4690 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 16 Apr 2026 12:28:15 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=8C(agents)=20pin=20Docker=20image=20t?= =?UTF-8?q?o=20a=20specific=20tag=20for=20reproducible=20builds?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Avoid using floating tags and pin the image to an explicit version to ensure consistent and reproducible agent builds. --- src/agents/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agents/Dockerfile b/src/agents/Dockerfile index 0469e970..8695aca3 100644 --- a/src/agents/Dockerfile +++ b/src/agents/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13-slim AS base +FROM python:3.13.13-slim AS base # Install system dependencies required by LiveKit RUN apt-get update && apt-get install -y \