github.com/vieux/docker@v0.6.3-0.20161004191708-e097c2a938c7/contrib/builder/deb/armhf/raspbian-jessie/Dockerfile (about) 1 FROM resin/rpi-raspbian:jessie 2 3 # allow replacing httpredir mirror 4 ARG APT_MIRROR=httpredir.debian.org 5 RUN sed -i s/httpredir.debian.org/$APT_MIRROR/g /etc/apt/sources.list 6 7 RUN apt-get update && apt-get install -y apparmor bash-completion btrfs-tools build-essential curl ca-certificates debhelper dh-apparmor dh-systemd git libapparmor-dev libdevmapper-dev libltdl-dev libsqlite3-dev libsystemd-journal-dev --no-install-recommends && rm -rf /var/lib/apt/lists/* 8 9 ENV GO_VERSION 1.7.1 10 # GOARM is the ARM architecture version which is unrelated to the above Golang version 11 ENV GOARM 6 12 RUN curl -fSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-armv6l.tar.gz" | tar xzC /usr/local 13 ENV PATH $PATH:/usr/local/go/bin 14 15 ENV AUTO_GOPATH 1 16 ENV DOCKER_BUILDTAGS apparmor selinux