From b118056241430a28739128fdf7fc60b125a12c49 Mon Sep 17 00:00:00 2001 From: Kenfe-Mickael Laventure Date: Mon, 21 Nov 2016 12:31:47 -0800 Subject: [PATCH] Add support for armhf ubuntu-yakkety deb Signed-off-by: Kenfe-Mickael Laventure --- contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile diff --git a/contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile b/contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile new file mode 100644 index 0000000000..f2549c95aa --- /dev/null +++ b/contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile @@ -0,0 +1,12 @@ +FROM armhf/ubuntu:yakkety + +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 libsystemd-dev vim-common --no-install-recommends && rm -rf /var/lib/apt/lists/* + +ENV GO_VERSION 1.7.3 +RUN curl -fSL "https://golang.org/dl/go${GO_VERSION}.linux-armv6l.tar.gz" | tar xzC /usr/local +ENV PATH $PATH:/usr/local/go/bin + +ENV AUTO_GOPATH 1 + +ENV DOCKER_BUILDTAGS apparmor pkcs11 selinux +ENV RUNC_BUILDTAGS apparmor selinux