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
This commit is contained in:
4NK CI Bot 2025-09-21 18:20:02 +00:00
parent 662b04bfdd
commit 8c83757025

View File

@ -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