Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-11-01 19:14:41 -04:00
parent 013ceb6617
commit 8b4b42e3a3
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

@ -8,14 +8,14 @@ image=$2
volume=/build
mkdir -p "$build"
mkdir -p "$volume"
curl --fail --silent --show-error --location "$tarball" | tar xvz --strip=1 -C %s 2>/dev/null) || (echo ""; printf "ERROR: %%s\n" "Could not prepare an image." "Please verify that $tarball is still available and is publicly accessible."; exit 1)
(curl --fail --silent --show-error --location "$tarball" | tar xvz --strip=1 -C "$volume" 2>/dev/null) || (echo ""; echo "ERROR: Could not prepare an image.";echo "Please verify that $tarball is still available and is publicly accessible."; exit 1;)
# Try to pull the image.
docker pull "$image" || true
cd "$build"
cd "$volume"
docker build --cache-from "$image" -t "$image" .