diff --git a/Dockerfile b/Dockerfile index ca58cd2..a8a007c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM gliderlabs/alpine MAINTAINER Chris Aubuchon -ENV CONSUL_TEMPLATE_VERSION 0.8.0 +ENV CONSUL_TEMPLATE_VERSION 0.9.0 ADD https://github.com/hashicorp/consul-template/releases/download/v${CONSUL_TEMPLATE_VERSION}/consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.tar.gz / @@ -11,3 +11,5 @@ RUN tar zxvf consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.tar.gz && \ rm -rf /consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.tar.gz && \ rm -rf /consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64 && \ mkdir -p /consul-template /consul-template/config.d /consul-template/templates + +CMD [ "/usr/local/bin/consul-template"]