mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00

Some Dockerfiles were missed during update to 1.5.4. This changes those Dockerfiles. Note that Dockerfile.armhf is not yet updated; it currently uses Dave Cheney's unofficial ARM builds, which are marked "end of life", so added a TODO instead. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
16 lines
684 B
Docker
16 lines
684 B
Docker
#
|
|
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/amd64/generate.sh"!
|
|
#
|
|
|
|
FROM debian:stretch
|
|
|
|
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 libseccomp-dev libsqlite3-dev pkg-config libsystemd-dev --no-install-recommends && rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV GO_VERSION 1.5.4
|
|
RUN curl -fSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" | tar xzC /usr/local
|
|
ENV PATH $PATH:/usr/local/go/bin
|
|
|
|
ENV AUTO_GOPATH 1
|
|
|
|
ENV DOCKER_BUILDTAGS apparmor seccomp selinux
|
|
ENV RUNC_BUILDTAGS apparmor seccomp selinux
|