From 8c837570252309104a7cd74b58d0cc54a066d486 Mon Sep 17 00:00:00 2001 From: 4NK CI Bot Date: Sun, 21 Sep 2025 18:20:02 +0000 Subject: [PATCH] fix: Install missing packages in Dockerfile for Alpine Linux - Add file command for WebAssembly verification - Add curl, wget, jq, netcat-openbsd for debugging - Fix CI build failure due to missing file command --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2a10850..eee7f5c 100755 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,11 @@ WORKDIR /app # Installation des dépendances minimales nécessaires RUN apk update && apk upgrade && apk add --no-cache \ git \ + curl \ + wget \ + jq \ + file \ + netcat-openbsd \ && rm -rf /var/cache/apk/* /tmp/* /var/tmp/* # Copy project files