mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-05 09:54:04 +00:00
11 lines
273 B
Makefile
11 lines
273 B
Makefile
all: hupper
|
|
|
|
hupper: Dockerfile main.go
|
|
docker build --build-arg GOOS=$(OS) --build-arg GOARCH=$(ARCH) -t hupper:build .
|
|
docker run --rm hupper:build cat /go/bin/hupper > hupper
|
|
chmod 755 hupper
|
|
|
|
clean:
|
|
rm -f hupper
|
|
docker images -q hupper:build | xargs docker rmi -f
|