diff --git a/README.md b/README.md index 670c6fd..4b0f759 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Build the following Dockerfile and try this guy out: ``` FROM ubuntu -ADD https://github.com/just-containers/s6-overlay/releases/download/v2.0.0.0/s6-overlay-amd64.tar.gz /tmp/ +ADD https://github.com/just-containers/s6-overlay/releases/download/v2.0.0.1/s6-overlay-amd64.tar.gz /tmp/ RUN tar xzf /tmp/s6-overlay-amd64.tar.gz -C / --exclude='./bin' && tar xzf /tmp/s6-overlay-amd64.tar.gz -C /usr ./bin RUN apt-get update && \ apt-get install -y nginx && \ @@ -490,6 +490,10 @@ xargs docker run --rm \ ## Upgrade Notes +* Version `2.0.0.1` - fixes issues with shells overwriting the `cd` + binary [#278](https://github.com/just-containers/s6-overlay/issues/278) + and tarballs having too-loose permissions [#274](https://github.com/just-containers/s6-overlay/issues/274). + * Starting with version `2.0.0.0`, `with-contenv` no longer uses `s6-envdir`, instead it uses [justc-envdir](https://github.com/just-containers/justc-envdir), a small fork that uses the entire contents of the files in the envdir. A new script is introduced, `with-contenv-legacy`, diff --git a/builder/build-latest b/builder/build-latest index dfb549f..4fd18ee 100755 --- a/builder/build-latest +++ b/builder/build-latest @@ -6,7 +6,7 @@ set -x ## PARAMS ## -RELEASE_VERSION=${RELEASE_VERSION:-2.0.0.0} +RELEASE_VERSION=${RELEASE_VERSION:-2.0.0.1} SKAWARE_VERSION="2.0.0" SKAWARE_SOURCE=${SKAWARE_SOURCE:-https://github.com/just-containers/skaware/releases/download/v$SKAWARE_VERSION}