Skip to content

Instantly share code, notes, and snippets.

@rshk
Created August 29, 2016 17:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rshk/beecd2c49f81a380d805c8b461b4c704 to your computer and use it in GitHub Desktop.
Save rshk/beecd2c49f81a380d805c8b461b4c704 to your computer and use it in GitHub Desktop.
build-docker-image.sh
#!/bin/bash
# Version tag needs to be dependent on all the files that will affect
# the generated image. Currently, only the dockerfile and Python
# requirements.
VERSION_TAG="$( sha1sum Dockerfile requirements/*.txt | sha1sum | cut -d' ' -f1 )"
echo "Image version: ${VERSION_TAG}"
echo "Commit SHA1: ${CIRCLE_SHA1}"
IMAGE_FULL_NAME="myorg/myapp:${VERSION_TAG}"
echo "Image name: ${IMAGE_FULL_NAME}"
echo
# Cache dir must match the one configured in circle.yml
CACHE_DIR="$( readlink -f ~/docker-images )"
IMAGE_ARCHIVE="${CACHE_DIR}/myapp-${VERSION_TAG}.tar"
echo "=====> Locating image archive: ${IMAGE_ARCHIVE}"
mkdir -p "$CACHE_DIR"
# If we already have an image built on the same dependencies, just
# re-use it.
if [[ -e "$IMAGE_ARCHIVE" ]]; then
echo "-----> Loading existing image archive"
docker load -i "$IMAGE_ARCHIVE"
else
echo "=====> Building image: ${IMAGE_FULL_NAME}"
docker build -t "$IMAGE_FULL_NAME" .
fi
# Tag the image as being the correct one for this commit.
# This is used in circle.yml to pick the correct image.
echo "=====> Tagging image with commit SHA1: ${CIRCLE_SHA1}"
docker tag "$IMAGE_FULL_NAME" myorg/myapp:"$CIRCLE_SHA1"
# Save to cache for later reuse
echo "=====> Saving image to cache: ${IMAGE_ARCHIVE}"
docker save "$IMAGE_FULL_NAME" > "$IMAGE_ARCHIVE"
echo "=====> All done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment