From cef806e26bbcafd0dfe571ffa85cbb8edbdb8cc9 Mon Sep 17 00:00:00 2001 From: qpismont Date: Wed, 17 Dec 2025 19:31:45 +0100 Subject: [PATCH] Enhance Containerfile: Add installation of Zed editor --- Containerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Containerfile b/Containerfile index ae2e42d..8083ce1 100644 --- a/Containerfile +++ b/Containerfile @@ -96,6 +96,9 @@ RUN echo "xpad" > /etc/modules-load.d/xpad.conf #Configuration gstreamer pour désactiver tous les drivers vaapi par défaut (évite des conflits avec certains drivers propriétaires) RUN echo "GST_VAAPI_ALL_DRIVERS=0" >> /etc/environment +#Install zed editor +RUN curl -f https://zed.dev/install.sh | sh + # Ajout de flathub avec des apps par défaut RUN flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo \ && flatpak install -y --system flathub runtime/org.gnome.Platform/x86_64/49 \