diff --git a/Dockerfile b/Dockerfile index 6a434d2..38dda85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM percona:5.6 -ENV CONTAINERPILOT_VER 3.0.0-RC1 +ENV CONTAINERPILOT_VER 3.0.0 ENV CONTAINERPILOT /etc/containerpilot.json5 # By keeping a lot of discrete steps in a single RUN we can clean up after @@ -36,7 +36,7 @@ RUN set -ex \ # \ # Add ContainerPilot and set its configuration file path \ # \ - && export CONTAINERPILOT_CHECKSUM=f67929d1c8567d31772085fc252338091a5f795c \ + && export CONTAINERPILOT_CHECKSUM=6da4a4ab3dd92d8fd009cdb81a4d4002a90c8b7c \ && curl -Lvo /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 \ && tar zxf /tmp/containerpilot.tar.gz -C /usr/local/bin \