Files
linuxkit/alpine/packages/docker/Makefile
Justin Cormack 6b60f08342 tidy curl
Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
2016-01-11 12:17:38 +00:00

13 lines
191 B
Makefile

all: docker
DOCKER_VERSION=1.9.1
ARCH=x86_64
OS=Linux
docker:
curl -L -o docker https://get.docker.com/builds/${OS}/${ARCH}/docker-${DOCKER_VERSION}
chmod +x docker
clean:
rm -f docker