Files
linuxkit/alpine/packages/hupper/Makefile
Justin Cormack 6ee7b22152 remove temporary containers
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-02-10 14:31:37 -08:00

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