Switch aarch64 images to arm64v8

The "aarch64" images on Docker Hub are deprecated
in favor of the "arm64v8" images.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Upstream-commit: cc436770b773767ad59e766be66323282b030d33
Component: packaging
This commit is contained in:
Sebastiaan van Stijn
2017-09-16 03:10:07 +02:00
parent 7f5ba34576
commit 35f91d208e
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM aarch64/ubuntu:xenial
FROM arm64v8/ubuntu:xenial
RUN apt-get update && apt-get install -y golang-go apparmor bash-completion btrfs-tools build-essential cmake curl ca-certificates debhelper dh-apparmor dh-systemd git libapparmor-dev libdevmapper-dev libltdl-dev libseccomp-dev pkg-config vim-common libsystemd-dev --no-install-recommends && rm -rf /var/lib/apt/lists/*

View File

@ -10,7 +10,7 @@ elif [ "$arch" = "armv7l" ]; then
elif [ "$arch" = "s390x" ]; then
img="s390x/alpine"
elif [ "$arch" = "aarch64" ]; then
img="aarch64/alpine"
img="arm64v8/alpine"
elif [ "$arch" = "ppc64le" ]; then
img="ppc64le/alpine"
else