mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-20 17:49:10 +00:00
kernel: Consistently use curl -f
Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
parent
5176ce7dd3
commit
18ec668c91
@ -132,7 +132,7 @@ RUN make -j "$(getconf _NPROCESSORS_ONLN)" KCFLAGS="-fno-pie" && \
|
|||||||
([ -n "${DEBUG}" ] && cp vmlinux /out || true)
|
([ -n "${DEBUG}" ] && cp vmlinux /out || true)
|
||||||
|
|
||||||
# WireGuard
|
# WireGuard
|
||||||
RUN curl -sSL -o /wireguard.tar.xz "${WIREGUARD_URL}" && \
|
RUN curl -fsSL -o /wireguard.tar.xz "${WIREGUARD_URL}" && \
|
||||||
echo "${WIREGUARD_SHA256} /wireguard.tar.xz" | sha256sum -c - && \
|
echo "${WIREGUARD_SHA256} /wireguard.tar.xz" | sha256sum -c - && \
|
||||||
cp /wireguard.tar.xz /out/src/ && \
|
cp /wireguard.tar.xz /out/src/ && \
|
||||||
tar -C / --one-top-level=wireguard --strip-components=2 -xJf /wireguard.tar.xz "WireGuard-${WIREGUARD_VERSION}/src" && \
|
tar -C / --one-top-level=wireguard --strip-components=2 -xJf /wireguard.tar.xz "WireGuard-${WIREGUARD_VERSION}/src" && \
|
||||||
@ -189,7 +189,7 @@ ENV UCODE_URL=https://downloadmirror.intel.com/27776/eng/microcode-20180425.tgz
|
|||||||
RUN set -e && \
|
RUN set -e && \
|
||||||
if [ $(uname -m) == x86_64 ]; then \
|
if [ $(uname -m) == x86_64 ]; then \
|
||||||
cd /ucode && \
|
cd /ucode && \
|
||||||
curl -sSL -o microcode.tar.gz ${UCODE_URL} && \
|
curl -fsSL -o microcode.tar.gz ${UCODE_URL} && \
|
||||||
md5sum -c intel-ucode-md5sums && \
|
md5sum -c intel-ucode-md5sums && \
|
||||||
tar xf microcode.tar.gz && \
|
tar xf microcode.tar.gz && \
|
||||||
rm -f intel-ucode/list && \
|
rm -f intel-ucode/list && \
|
||||||
|
Loading…
Reference in New Issue
Block a user