mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
503fe408da
go1.8.5 (released 2017/10/25) includes fixes to the compiler, linker, runtime, documentation, go command, and the crypto/x509 and net/smtp packages. It includes a fix to a bug introduced in Go 1.8.4 that broke go get of non-Git repositories under certain conditions. See the Go 1.8.5 milestone on our issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.8.5 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
112 lines
3.4 KiB
Bash
Executable file
112 lines
3.4 KiB
Bash
Executable file
#!/usr/bin/env 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
|
|
|
|
extraBuildTags='apparmor 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"
|
|
pkg-config # for detecting things like libsystemd-journal dynamically
|
|
vim-common # tini dep
|
|
)
|
|
|
|
case "$suite" in
|
|
trusty)
|
|
packages+=( libsystemd-journal-dev )
|
|
;;
|
|
jessie)
|
|
packages+=( libsystemd-journal-dev )
|
|
packages+=( libseccomp-dev )
|
|
|
|
extraBuildTags+=' seccomp'
|
|
runcBuildTags+=' seccomp'
|
|
;;
|
|
stretch|xenial)
|
|
packages+=( libsystemd-dev )
|
|
packages+=( libseccomp-dev )
|
|
|
|
extraBuildTags+=' seccomp'
|
|
runcBuildTags+=' seccomp'
|
|
;;
|
|
*)
|
|
echo "Unsupported distro:" $distro:$suite
|
|
rm -fr "$version"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
case "$suite" in
|
|
jessie)
|
|
echo 'RUN echo deb http://ftp.debian.org/debian jessie-backports main > /etc/apt/sources.list.d/backports.list' >> "$version/Dockerfile"
|
|
;;
|
|
*)
|
|
;;
|
|
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"
|
|
|
|
awk '$1 == "ENV" && $2 == "GO_VERSION" { print; exit }' ../../../../Dockerfile.aarch64 >> "$version/Dockerfile"
|
|
echo 'RUN curl -fSL "https://golang.org/dl/go${GO_VERSION}.linux-arm64.tar.gz" | tar xzC /usr/local' >> "$version/Dockerfile"
|
|
echo 'ENV PATH $PATH:/usr/local/go/bin' >> "$version/Dockerfile"
|
|
echo >> "$version/Dockerfile"
|
|
|
|
echo 'ENV AUTO_GOPATH 1' >> "$version/Dockerfile"
|
|
echo >> "$version/Dockerfile"
|
|
|
|
# print build tags in alphabetical order
|
|
buildTags=$( echo "$extraBuildTags" | xargs -n1 | sort -n | tr '\n' ' ' | sed -e 's/[[:space:]]*$//' )
|
|
runcBuildTags=$( echo "$runcBuildTags" | xargs -n1 | sort -n | tr '\n' ' ' | sed -e 's/[[:space:]]*$//' )
|
|
echo "ENV DOCKER_BUILDTAGS $buildTags" >> "$version/Dockerfile"
|
|
echo "ENV RUNC_BUILDTAGS $runcBuildTags" >> "$version/Dockerfile"
|
|
done
|