Merge pull request #52 from thaJeztah/switch-to-arm64v8

Switch aarch64 images to arm64v8
Upstream-commit: a1debdbcf0220c10799fce225f2f189e681de385
Component: packaging
This commit is contained in:
Eli Uriegas
2017-09-15 18:54:10 -07:00
committed by GitHub
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