Remove build containers

5 containers are created during the build and not used anymore. Removing them.
This commit is contained in:
Łukasz Oleś 2016-12-29 18:22:00 +01:00
parent 99939d360a
commit 1ef56828f8

View File

@ -69,7 +69,7 @@ build: bin/$(BIN)-$(ARCH)
bin/$(BIN)-$(ARCH): $(SRCS) bin/$(BIN)-$(ARCH): $(SRCS)
mkdir -p bin mkdir -p bin
docker run -u $$(id -u):$$(id -g) -v $$(pwd):/build \ docker run --rm -u $$(id -u):$$(id -g) -v $$(pwd):/build \
$(KUBE_CROSS_IMAGE):$(KUBE_CROSS_VERSION) \ $(KUBE_CROSS_IMAGE):$(KUBE_CROSS_VERSION) \
/bin/bash -c "\ /bin/bash -c "\
cd /build && \ cd /build && \