do the same for other makefiles

This commit is contained in:
Tony Li 2017-02-16 17:13:36 -08:00
parent f32ef32489
commit bba7213128
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ container: server
docker build --pull -t $(PREFIX)-$(ARCH):$(TAG) .
push: container
gcloud docker push $(PREFIX)-$(ARCH):$(TAG)
gcloud docker -- push $(PREFIX)-$(ARCH):$(TAG)
clean:
rm -f server

View file

@ -8,7 +8,7 @@ container:
docker build --pull -t $(PREFIX):$(TAG) .
push: container
gcloud docker push $(PREFIX):$(TAG)
gcloud docker -- push $(PREFIX):$(TAG)
clean:
docker rmi -f $(PREFIX):$(TAG) || true