mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
(cherry picked from commit 3b3cf87478)
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
		
	
			
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			933 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			933 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
#
 | 
						|
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/armhf/generate.sh"!
 | 
						|
#
 | 
						|
 | 
						|
FROM resin/rpi-raspbian:jessie
 | 
						|
 | 
						|
# allow replacing httpredir or deb mirror
 | 
						|
ARG APT_MIRROR=deb.debian.org
 | 
						|
RUN sed -ri "s/(httpredir|deb).debian.org/$APT_MIRROR/g" /etc/apt/sources.list
 | 
						|
 | 
						|
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 --no-install-recommends && rm -rf /var/lib/apt/lists/*
 | 
						|
 | 
						|
ENV GO_VERSION 1.7.3
 | 
						|
# GOARM is the ARM architecture version which is unrelated to the above Golang version
 | 
						|
ENV GOARM 6
 | 
						|
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
 |