From b7937864f2f80493a0430ba53292f541f69be219 Mon Sep 17 00:00:00 2001 From: Dante Briones Date: Wed, 19 Jul 2017 15:38:58 -0700 Subject: [PATCH] Update to containerpilot 3.3.0 --- hello/Dockerfile | 4 ++-- nginx/Dockerfile | 4 ++-- world/Dockerfile | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hello/Dockerfile b/hello/Dockerfile index 26ddab9..3792c88 100644 --- a/hello/Dockerfile +++ b/hello/Dockerfile @@ -4,10 +4,10 @@ RUN apk update && \ apk add curl # Install ContainerPilot -ENV CONTAINERPILOT_VER 3.0.0 +ENV CONTAINERPILOT_VER 3.3.0 ENV CONTAINERPILOT /etc/containerpilot.json5 -RUN export CONTAINERPILOT_CHECKSUM=6da4a4ab3dd92d8fd009cdb81a4d4002a90c8b7c \ +RUN export CONTAINERPILOT_CHECKSUM=62621712ef6ba755e24805f616096de13e2fd087 \ && curl -Lso /tmp/containerpilot.tar.gz \ "https://github.com/joyent/containerpilot/releases/download/${CONTAINERPILOT_VER}/containerpilot-${CONTAINERPILOT_VER}.tar.gz" \ && echo "${CONTAINERPILOT_CHECKSUM} /tmp/containerpilot.tar.gz" | sha1sum -c \ diff --git a/nginx/Dockerfile b/nginx/Dockerfile index bea8fa0..34f1fd7 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -11,10 +11,10 @@ RUN curl -Lo /tmp/consul_template_0.15.0_linux_amd64.zip https://releases.hashic mv consul-template /bin # Install ContainerPilot -ENV CONTAINERPILOT_VER 3.0.0 +ENV CONTAINERPILOT_VER 3.3.0 ENV CONTAINERPILOT /etc/containerpilot.json5 -RUN export CONTAINERPILOT_CHECKSUM=6da4a4ab3dd92d8fd009cdb81a4d4002a90c8b7c \ +RUN export CONTAINERPILOT_CHECKSUM=62621712ef6ba755e24805f616096de13e2fd087 \ && curl -Lso /tmp/containerpilot.tar.gz \ "https://github.com/joyent/containerpilot/releases/download/${CONTAINERPILOT_VER}/containerpilot-${CONTAINERPILOT_VER}.tar.gz" \ && echo "${CONTAINERPILOT_CHECKSUM} /tmp/containerpilot.tar.gz" | sha1sum -c \ diff --git a/world/Dockerfile b/world/Dockerfile index b2e415c..cf1c546 100644 --- a/world/Dockerfile +++ b/world/Dockerfile @@ -4,10 +4,10 @@ RUN apk update && \ apk add curl # Install ContainerPilot -ENV CONTAINERPILOT_VER 3.0.0 +ENV CONTAINERPILOT_VER 3.3.0 ENV CONTAINERPILOT /etc/containerpilot.json5 -RUN export CONTAINERPILOT_CHECKSUM=6da4a4ab3dd92d8fd009cdb81a4d4002a90c8b7c \ +RUN export CONTAINERPILOT_CHECKSUM=62621712ef6ba755e24805f616096de13e2fd087 \ && curl -Lso /tmp/containerpilot.tar.gz \ "https://github.com/joyent/containerpilot/releases/download/${CONTAINERPILOT_VER}/containerpilot-${CONTAINERPILOT_VER}.tar.gz" \ && echo "${CONTAINERPILOT_CHECKSUM} /tmp/containerpilot.tar.gz" | sha1sum -c \