mirror of https://github.com/k3s-io/k3s
Add a docker image for dnsutils
parent
ec8ba4a62f
commit
07df69d339
|
@ -0,0 +1,6 @@
|
||||||
|
FROM debian:wheezy
|
||||||
|
MAINTAINER Tim Hockin "thockin@google.com"
|
||||||
|
|
||||||
|
RUN apt-get -q update && \
|
||||||
|
apt-get install -y dnsutils && \
|
||||||
|
apt-get clean
|
|
@ -0,0 +1,8 @@
|
||||||
|
all:
|
||||||
|
@echo "try 'make image' or 'make push'"
|
||||||
|
|
||||||
|
image:
|
||||||
|
docker build -t gcr.io/google_containers/dnsutils .
|
||||||
|
|
||||||
|
push:
|
||||||
|
gcloud preview docker push gcr.io/google_containers/dnsutils
|
Loading…
Reference in New Issue