summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..5717b34
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,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 \ No newline at end of file