mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fb06ddf4db
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>
18 lines
612 B
Docker
18 lines
612 B
Docker
#
|
|
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/rpm/amd64/generate.sh"!
|
|
#
|
|
|
|
FROM fedora:23
|
|
|
|
RUN dnf install -y @development-tools fedora-packager
|
|
RUN dnf install -y btrfs-progs-devel device-mapper-devel glibc-static libseccomp-devel libselinux-devel libtool-ltdl-devel pkgconfig selinux-policy selinux-policy-devel sqlite-devel systemd-devel tar git
|
|
|
|
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 seccomp selinux
|
|
ENV RUNC_BUILDTAGS seccomp selinux
|
|
|