switch busybox to curl

This commit is contained in:
Lance Vick 2024-01-16 21:43:02 -08:00
parent 5945be3325
commit a373eb2452
Signed by: lrvick
GPG Key ID: 8E47A1EC35A1551D
1 changed files with 2 additions and 1 deletions

View File

@ -9,8 +9,9 @@ ENV SRC_FILE=busybox-${SRC_VERSION}.tar.bz2
ENV KCONFIG_NOTIMESTAMP=1
FROM base as fetch
WORKDIR /home/user
RUN set -eux; \
wget ${SRC_SITE}/${SRC_FILE}; \
curl -O -J ${SRC_SITE}/${SRC_FILE}; \
echo "${SRC_HASH} ${SRC_FILE}" | sha256sum -c
FROM fetch as build