From db488c0706e221b1d33b218d91be533107d898f4 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Thu, 28 Jun 2018 13:46:30 +0000 Subject: [PATCH] Remove Debian Jessie for arm64 It's not longer supported since Debian Jessie is now an LTS release as of June 17, 2018. LTS releases of Debian only support i386, amd64, armel and armhf Sources: * https://wiki.debian.org/LTS * https://wiki.debian.org/LTS/FAQ Signed-off-by: Eli Uriegas Upstream-commit: 24f8b422aaed0fba9d0f03bfd5b99c58f0d7f30d Component: packaging --- .../deb/debian-jessie/Dockerfile.aarch64 | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 components/packaging/deb/debian-jessie/Dockerfile.aarch64 diff --git a/components/packaging/deb/debian-jessie/Dockerfile.aarch64 b/components/packaging/deb/debian-jessie/Dockerfile.aarch64 deleted file mode 100644 index f5935f3ff6..0000000000 --- a/components/packaging/deb/debian-jessie/Dockerfile.aarch64 +++ /dev/null @@ -1,32 +0,0 @@ -FROM arm64v8/debian:jessie-backports - -# allow replacing httpredir or deb mirror -ARG APT_MIRROR=deb.debian.org -RUN sed -ri "s/(httpredir|deb).debian.org/$APT_MIRROR/g" /etc/apt/sources.list - -RUN apt-get update && apt-get install -y 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 libudev-dev gnupg dirmngr --no-install-recommends && rm -rf /var/lib/apt/lists/* - -ARG GO_VERSION -RUN curl -fSL "https://golang.org/dl/go${GO_VERSION}.linux-arm64.tar.gz" | tar xzC /usr/local -ENV GOPATH /go -ENV PATH $PATH:/usr/local/go/bin:$GOPATH/bin -ENV DOCKER_BUILDTAGS apparmor pkcs11 seccomp selinux -ENV RUNC_BUILDTAGS apparmor seccomp selinux - -COPY common/ /root/build-deb/debian -COPY build-deb /root/build-deb/build-deb - -RUN mkdir -p /go/src/github.com/docker && \ - mkdir -p /go/src/github.com/opencontainers && \ - ln -snf /engine /root/build-deb/engine && \ - ln -snf /cli /root/build-deb/cli && \ - ln -snf /root/build-deb/engine /go/src/github.com/docker/docker && \ - ln -snf /root/build-deb/cli /go/src/github.com/docker/cli - - -ENV DISTRO debian -ENV SUITE jessie - -WORKDIR /root/build-deb - -ENTRYPOINT ["/root/build-deb/build-deb"]