2016-11-17 09:38:17 +08:00
|
|
|
#
|
|
|
|
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/aarch64/generate.sh"!
|
|
|
|
#
|
|
|
|
|
|
|
|
FROM aarch64/ubuntu:trusty
|
|
|
|
|
2017-01-17 12:09:50 +00:00
|
|
|
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 pkg-config vim-common libsystemd-journal-dev golang-1.6-go --no-install-recommends && rm -rf /var/lib/apt/lists/*
|
2016-11-17 09:38:17 +08:00
|
|
|
|
|
|
|
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.
|
2016-12-05 11:57:59 -05:00
|
|
|
ENV GO_VERSION 1.7.4
|
2016-11-17 09:38:17 +08:00
|
|
|
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
|