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:
parent
662b04bfdd
commit
8c83757025
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user