Commit 52ad097e authored by k8s-merge-robot's avatar k8s-merge-robot

Merge pull request #17200 from mikedanese/debian-iptables

Auto commit by PR queue bot
parents 7f71264e 28411be1
FROM debian
# All apt-get's must be in one run command or the
# cleanup has no effect.
RUN apt-get update && \
apt-get install -y iptables && \
ls /var/lib/apt/lists/*debian* | xargs rm
.PHONY: build push
IMAGE = debian-iptables
TAG = v1
build:
docker build -t beta.gcr.io/google_containers/$(IMAGE):$(TAG) .
push: build
gcloud docker --server=beta.gcr.io push beta.gcr.io/google_containers/$(IMAGE):$(TAG)
all: push
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment