mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
cleanup
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
parent
8b4b42e3a3
commit
60208b7524
|
@ -1,11 +0,0 @@
|
||||||
FROM docker:latest
|
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
|
||||||
bash \
|
|
||||||
ca-certificates \
|
|
||||||
curl \
|
|
||||||
tar
|
|
||||||
|
|
||||||
COPY build.sh /usr/local/bin/build
|
|
||||||
|
|
||||||
ENTRYPOINT ["build"]
|
|
|
@ -1,22 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
set -e
|
|
||||||
set -o pipefail
|
|
||||||
set -x
|
|
||||||
|
|
||||||
tarball=$1
|
|
||||||
image=$2
|
|
||||||
|
|
||||||
volume=/build
|
|
||||||
|
|
||||||
mkdir -p "$volume"
|
|
||||||
|
|
||||||
(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 "$volume"
|
|
||||||
|
|
||||||
docker build --cache-from "$image" -t "$image" .
|
|
||||||
|
|
||||||
docker push "$image"
|
|
Loading…
Reference in New Issue
Block a user