mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add make deb
support for aarch64
Fixes: #27045
Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
(cherry picked from commit a532ff8cc3
)
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
This commit is contained in:
parent
e285a304db
commit
8079cc8147
4 changed files with 174 additions and 0 deletions
10
contrib/builder/deb/aarch64/build.sh
Executable file
10
contrib/builder/deb/aarch64/build.sh
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
||||||
|
|
||||||
|
set -x
|
||||||
|
./generate.sh
|
||||||
|
for d in */; do
|
||||||
|
docker build -t "dockercore/builder-deb:$(basename "$d")" "$d"
|
||||||
|
done
|
118
contrib/builder/deb/aarch64/generate.sh
Executable file
118
contrib/builder/deb/aarch64/generate.sh
Executable file
|
@ -0,0 +1,118 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# This file is used to auto-generate Dockerfiles for making debs via 'make deb'
|
||||||
|
#
|
||||||
|
# usage: ./generate.sh [versions]
|
||||||
|
# ie: ./generate.sh
|
||||||
|
# to update all Dockerfiles in this directory
|
||||||
|
# or: ./generate.sh ubuntu-trusty
|
||||||
|
# to only update ubuntu-trusty/Dockerfile
|
||||||
|
# or: ./generate.sh ubuntu-newversion
|
||||||
|
# to create a new folder and a Dockerfile within it
|
||||||
|
#
|
||||||
|
# Note: non-LTS versions are not guaranteed to work.
|
||||||
|
|
||||||
|
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
||||||
|
|
||||||
|
versions=( "$@" )
|
||||||
|
if [ ${#versions[@]} -eq 0 ]; then
|
||||||
|
versions=( */ )
|
||||||
|
fi
|
||||||
|
versions=( "${versions[@]%/}" )
|
||||||
|
|
||||||
|
for version in "${versions[@]}"; do
|
||||||
|
echo "${versions[@]}"
|
||||||
|
distro="${version%-*}"
|
||||||
|
suite="${version##*-}"
|
||||||
|
from="aarch64/${distro}:${suite}"
|
||||||
|
|
||||||
|
mkdir -p "$version"
|
||||||
|
echo "$version -> FROM $from"
|
||||||
|
cat > "$version/Dockerfile" <<-EOF
|
||||||
|
#
|
||||||
|
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/aarch64/generate.sh"!
|
||||||
|
#
|
||||||
|
|
||||||
|
FROM $from
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
dockerBuildTags='apparmor pkcs11 selinux'
|
||||||
|
runcBuildTags='apparmor selinux'
|
||||||
|
|
||||||
|
# this list is sorted alphabetically; please keep it that way
|
||||||
|
packages=(
|
||||||
|
apparmor # for apparmor_parser for testing the profile
|
||||||
|
bash-completion # for bash-completion debhelper integration
|
||||||
|
btrfs-tools # for "btrfs/ioctl.h" (and "version.h" if possible)
|
||||||
|
build-essential # "essential for building Debian packages"
|
||||||
|
cmake # tini dep
|
||||||
|
curl ca-certificates # for downloading Go
|
||||||
|
debhelper # for easy ".deb" building
|
||||||
|
dh-apparmor # for apparmor debhelper
|
||||||
|
dh-systemd # for systemd debhelper integration
|
||||||
|
git # for "git commit" info in "docker -v"
|
||||||
|
libapparmor-dev # for "sys/apparmor.h"
|
||||||
|
libdevmapper-dev # for "libdevmapper.h"
|
||||||
|
libltdl-dev # for pkcs11 "ltdl.h"
|
||||||
|
libsqlite3-dev # for "sqlite3.h"
|
||||||
|
pkg-config # for detecting things like libsystemd-journal dynamically
|
||||||
|
vim-common # tini dep
|
||||||
|
)
|
||||||
|
|
||||||
|
case "$suite" in
|
||||||
|
trusty)
|
||||||
|
packages+=( libsystemd-journal-dev )
|
||||||
|
# aarch64 doesn't have an official downloadable binary for go.
|
||||||
|
# And gccgo for trusty only includes Go 1.2 implementation which
|
||||||
|
# is too old to build current go source, fortunately trusty has
|
||||||
|
# golang-1.6-go package can be used as bootstrap.
|
||||||
|
packages+=( golang-1.6-go )
|
||||||
|
;;
|
||||||
|
xenial)
|
||||||
|
packages+=( libsystemd-dev )
|
||||||
|
packages+=( golang-go libseccomp-dev)
|
||||||
|
|
||||||
|
dockerBuildTags="$dockerBuildTags seccomp"
|
||||||
|
runcBuildTags="$runcBuildTags seccomp"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Unsupported distro:" $distro:$suite
|
||||||
|
rm -fr "$version"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# update and install packages
|
||||||
|
echo "RUN apt-get update && apt-get install -y ${packages[*]} --no-install-recommends && rm -rf /var/lib/apt/lists/*" >> "$version/Dockerfile"
|
||||||
|
echo >> "$version/Dockerfile"
|
||||||
|
|
||||||
|
case "$suite" in
|
||||||
|
trusty)
|
||||||
|
echo 'RUN update-alternatives --install /usr/bin/go go /usr/lib/go-1.6/bin/go 100' >> "$version/Dockerfile"
|
||||||
|
echo >> "$version/Dockerfile"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
echo "# Install Go" >> "$version/Dockerfile"
|
||||||
|
echo "# aarch64 doesn't have official go binaries, so use the version of go installed from" >> "$version/Dockerfile"
|
||||||
|
echo "# the image to build go from source." >> "$version/Dockerfile"
|
||||||
|
|
||||||
|
awk '$1 == "ENV" && $2 == "GO_VERSION" { print; exit }' ../../../../Dockerfile.aarch64 >> "$version/Dockerfile"
|
||||||
|
echo 'RUN mkdir /usr/src/go && curl -fsSL https://golang.org/dl/go${GO_VERSION}.src.tar.gz | tar -v -C /usr/src/go -xz --strip-components=1 \' >> "$version/Dockerfile"
|
||||||
|
echo ' && cd /usr/src/go/src \' >> "$version/Dockerfile"
|
||||||
|
echo ' && GOOS=linux GOARCH=arm64 GOROOT_BOOTSTRAP="$(go env GOROOT)" ./make.bash' >> "$version/Dockerfile"
|
||||||
|
echo >> "$version/Dockerfile"
|
||||||
|
|
||||||
|
echo 'ENV PATH $PATH:/usr/src/go/bin' >> "$version/Dockerfile"
|
||||||
|
echo >> "$version/Dockerfile"
|
||||||
|
|
||||||
|
echo "ENV AUTO_GOPATH 1" >> "$version/Dockerfile"
|
||||||
|
echo >> "$version/Dockerfile"
|
||||||
|
|
||||||
|
echo "ENV DOCKER_BUILDTAGS $dockerBuildTags" >> "$version/Dockerfile"
|
||||||
|
echo "ENV RUNC_BUILDTAGS $runcBuildTags" >> "$version/Dockerfile"
|
||||||
|
done
|
24
contrib/builder/deb/aarch64/ubuntu-trusty/Dockerfile
Normal file
24
contrib/builder/deb/aarch64/ubuntu-trusty/Dockerfile
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
#
|
||||||
|
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/aarch64/generate.sh"!
|
||||||
|
#
|
||||||
|
|
||||||
|
FROM aarch64/ubuntu:trusty
|
||||||
|
|
||||||
|
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 libsqlite3-dev pkg-config vim-common libsystemd-journal-dev golang-1.6-go --no-install-recommends && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
RUN update-alternatives --install /usr/bin/go go /usr/lib/go-1.6/bin/go 100
|
||||||
|
|
||||||
|
# Install Go
|
||||||
|
# aarch64 doesn't have official go binaries, so use the version of go installed from
|
||||||
|
# the image to build go from source.
|
||||||
|
ENV GO_VERSION 1.7.3
|
||||||
|
RUN mkdir /usr/src/go && curl -fsSL https://golang.org/dl/go${GO_VERSION}.src.tar.gz | tar -v -C /usr/src/go -xz --strip-components=1 \
|
||||||
|
&& cd /usr/src/go/src \
|
||||||
|
&& GOOS=linux GOARCH=arm64 GOROOT_BOOTSTRAP="$(go env GOROOT)" ./make.bash
|
||||||
|
|
||||||
|
ENV PATH $PATH:/usr/src/go/bin
|
||||||
|
|
||||||
|
ENV AUTO_GOPATH 1
|
||||||
|
|
||||||
|
ENV DOCKER_BUILDTAGS apparmor pkcs11 selinux
|
||||||
|
ENV RUNC_BUILDTAGS apparmor selinux
|
22
contrib/builder/deb/aarch64/ubuntu-xenial/Dockerfile
Normal file
22
contrib/builder/deb/aarch64/ubuntu-xenial/Dockerfile
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
#
|
||||||
|
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/aarch64/generate.sh"!
|
||||||
|
#
|
||||||
|
|
||||||
|
FROM aarch64/ubuntu:xenial
|
||||||
|
|
||||||
|
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 libsqlite3-dev pkg-config vim-common libsystemd-dev golang-go libseccomp-dev --no-install-recommends && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Install Go
|
||||||
|
# aarch64 doesn't have official go binaries, so use the version of go installed from
|
||||||
|
# the image to build go from source.
|
||||||
|
ENV GO_VERSION 1.7.3
|
||||||
|
RUN mkdir /usr/src/go && curl -fsSL https://golang.org/dl/go${GO_VERSION}.src.tar.gz | tar -v -C /usr/src/go -xz --strip-components=1 \
|
||||||
|
&& cd /usr/src/go/src \
|
||||||
|
&& GOOS=linux GOARCH=arm64 GOROOT_BOOTSTRAP="$(go env GOROOT)" ./make.bash
|
||||||
|
|
||||||
|
ENV PATH $PATH:/usr/src/go/bin
|
||||||
|
|
||||||
|
ENV AUTO_GOPATH 1
|
||||||
|
|
||||||
|
ENV DOCKER_BUILDTAGS apparmor pkcs11 selinux seccomp
|
||||||
|
ENV RUNC_BUILDTAGS apparmor selinux seccomp
|
Loading…
Add table
Reference in a new issue