Skip to content
Snippets Groups Projects
Commit e46d26a7 authored by ViViDboarder's avatar ViViDboarder Committed by Jairo Llopis
Browse files

First stab at multi-arch builds

parent f16482dd
No related branches found
No related tags found
No related merge requests found
FROM haproxy:1.9-alpine ARG REPO=library
FROM ${REPO}/haproxy:1.9-alpine
EXPOSE 2375 EXPOSE 2375
ENV ALLOW_RESTARTS=0 \ ENV ALLOW_RESTARTS=0 \
......
#!/bin/bash #!/bin/bash
set -ex 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 \ docker build \
--build-arg REPO="$REPO" \
--build-arg VCS_REF="$GIT_SHA1" \ --build-arg VCS_REF="$GIT_SHA1" \
--build-arg BUILD_DATE="$(date --rfc-3339 ns)" \ --build-arg BUILD_DATE="$(date --rfc-3339 ns)" \
--tag "$IMAGE_NAME" . --tag "$IMAGE_NAME" .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment