blob: eba2aba73f936848a1601cd7fbb256f246c848d7 (
plain)
1
2
3
4
5
6
7
8
|
FROM consul:1.0.6
RUN cd /consul \
&& curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl \
&& chmod +x kubectl \
&& apk add --no-cache jq
ENTRYPOINT /usr/local/bin/docker-entrypoint.sh
|