Skip to content
Snippets Groups Projects
Verified Commit 9ac81dc3 authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

Remove unneeded build script

parent 34e878e1
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
set -ex
# Extract arch repo from a docker tag suffix
REPO=""
case "$DOCKER_TAG" in
*amd64)
REPO="library"
;;
*arm32v5)
REPO="arm32v5"
;;
*arm32v6)
REPO="arm32v6"
;;
*arm32v7)
REPO="arm32v7"
;;
*arm64v8)
REPO="arm64v8"
;;
*i386)
REPO="i386"
;;
*ppc64le)
REPO="ppc64le"
;;
*s390x)
REPO="s390x"
;;
*)
REPO="library"
;;
esac
docker build \
--build-arg REPO="$REPO" \
--build-arg VCS_REF="$GIT_SHA1" \
--build-arg BUILD_DATE="$(date --rfc-3339 ns)" \
--tag "$IMAGE_NAME" .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment