From 3c694ab7f1a28dea09023540f8a4bb25782d5aec Mon Sep 17 00:00:00 2001 From: Justin Kromlinger Date: Sat, 18 Sep 2021 13:04:19 +0200 Subject: [PATCH] Drop --continue-at from curl call It is incompatible with -J and done automatically. See [1]. [1] https://gitlab.archlinux.org/archlinux/archlinux-docker/-/jobs/34434#L72 --- Dockerfile.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.template b/Dockerfile.template index 0320331..5440ce1 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -13,7 +13,7 @@ COPY TEMPLATE_ROOTFS_FILE / RUN apk add --no-cache curl bash SHELL ["/bin/bash", "-c"] # TEMPLATE_ROOTFS_RELEASE_URL -RUN ROOTFS="$(curl -sOJL --continue-at - -w "%{filename_effective}" TEMPLATE_ROOTFS_URL)" && \ +RUN ROOTFS="$(curl -sOJL -w "%{filename_effective}" TEMPLATE_ROOTFS_URL)" && \ sha256sum -c <<< "TEMPLATE_ROOTFS_HASH" && \ mkdir /rootfs && \ tar -C /rootfs --extract --file "${ROOTFS}"