kubernetes/cluster/images/nginx/Makefile
2015-04-02 16:42:17 -07:00

15 lines
341 B
Makefile

### Nginx image
# This image is used to run nginx on the master.
# Current 'live' version is v1
# Please make sure that you update this comment if you build/push new
# versions.
VERSION=v2
all:
docker build -t gcr.io/google_containers/nginx:${VERSION} .
gcloud preview docker push gcr.io/google_containers/nginx:${VERSION}
.PHONY: all