Includes fixes to the go command, linker, and the net/http, mime/multipart, ld/macho, bytes, and strings packages. See the Go 1.10.4 milestone on the issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.10.4 Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 11b4630f4c73885123336b7917cc139c43cf413a) Signed-off-by: Eli Uriegas <eli.uriegas@docker.com> Upstream-commit: 3920ea81ea2cab8e1f5f17fb16e133cfb87d9c98 Component: packaging
Building your own Docker rpm package
.rpm packages can be built from this directory with the following syntax
make ENGINE_DIR=/path/to/engine CLI_DIR=/path/to/cli rpm
Artifacts will be located in rpmbuild under the following directory structure:
rpmbuild/$distro-$distro_version/
NOTES:
ENGINE_DIR-> Specifies the directory where the engine code is located, eg:$GOPATH/src/github.com/docker/dockerCLI_DIR-> Specifies the directory where the cli code is located, eg:$GOPATH/src/github.com/docker/cli
Specifying a specific distro
make ENGINE_DIR=/path/to/engine CLI_DIR=/path/to/cli fedora
Specifying a specific distro version
make ENGINE_DIR=/path/to/engine CLI_DIR=/path/to/cli fedora-25
Building the latest docker-ce
git clone https://github.com/docker/docker-ce.git
make ENGINE_DIR=docker-ce/components/engine CLI_DIR=docker-ce/components/cli rpm