blob: 5717b34a1046c1ac0c59ebd9aea0532ce9c326b4 (
plain)
1
2
3
4
5
6
7
8
9
|
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
RUN apk update && apk add jq
ENTRYPOINT /usr/local/bin/docker-entrypoint.sh
|