fix: alpine build need wget

This commit is contained in:
KagurazakaNyaa 2024-10-30 16:52:25 +08:00
parent d6f0691828
commit ab7bb109e0

View File

@ -6,7 +6,8 @@ FROM --platform=${BUILDPLATFORM} node:lts-alpine AS builder
WORKDIR /src
COPY . /src
RUN chmod a+x ./install-dependents.sh &&\
RUN apk add --no-cache wget &&\
chmod a+x ./install-dependents.sh &&\
chmod a+x ./build.sh &&\
./install-dependents.sh &&\
./build.sh &&\