From a0995abba8887fc1079189351f5728ac3a8bfd63 Mon Sep 17 00:00:00 2001 From: julien Date: Thu, 26 Jun 2025 11:12:13 +0200 Subject: [PATCH] up --- Dockerfile.dev | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Dockerfile.dev b/Dockerfile.dev index 49f3eb5..28056f7 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,10 +1,16 @@ FROM golang:1.24-bullseye -# Installer ffmpeg, curl, unrar et air +# Installer ffmpeg, curl, unrar-free (et optionnellement p7zip-full pour un support d'archives plus large) et air RUN apt-get update && \ - apt-get install -y ffmpeg curl unrar && \ - curl -sSfL https://raw.githubusercontent.com/cosmtrek/air/master/install.sh | sh -s -- -b /usr/local/bin && \ - apt-get clean && rm -rf /var/lib/apt/lists/* + apt-get install -y \ + ffmpeg \ + curl \ + unrar-free \ + p7zip-full \ + && curl -sSfL https://raw.githubusercontent.com/cosmtrek/air/master/install.sh \ + | sh -s -- -b /usr/local/bin \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* WORKDIR /app