mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-16 15:00:55 +00:00
Not yet working, some parts also not yet cross compiled Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
14 lines
247 B
Makefile
14 lines
247 B
Makefile
all: docker
|
|
|
|
DOCKER_VERSION=1.9.1
|
|
ARCH?=x86_64
|
|
OS?=Linux
|
|
|
|
docker:
|
|
[ "${ARCH}" != "arm" ] && curl -L -o docker https://get.docker.com/builds/${OS}/${ARCH}/docker-${DOCKER_VERSION} || \
|
|
cp docker-arm docker
|
|
chmod +x docker
|
|
|
|
clean:
|
|
rm -f docker
|