Move custom images out of contrib
This commit is contained in:
parent
3e87a2de40
commit
d002ca2f5e
12 changed files with 435 additions and 0 deletions
14
images/nginx-slim/Makefile
Normal file
14
images/nginx-slim/Makefile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
all: push
|
||||
|
||||
# 0.0.0 shouldn't clobber any released builds
|
||||
TAG = 0.13
|
||||
PREFIX = gcr.io/google_containers/nginx-slim
|
||||
|
||||
container:
|
||||
docker build --pull -t $(PREFIX):$(TAG) .
|
||||
|
||||
push: container
|
||||
gcloud docker push $(PREFIX):$(TAG)
|
||||
|
||||
clean:
|
||||
docker rmi -f $(PREFIX):$(TAG) || true
|
||||
Loading…
Add table
Add a link
Reference in a new issue