diff --git a/INSTALL.md b/INSTALL.md index ba6c3f1..88ecce2 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -18,7 +18,7 @@ RUN set -eux; \ Older Debian releases (or newer `gosu` releases): ```dockerfile -ENV GOSU_VERSION 1.13 +ENV GOSU_VERSION 1.14 RUN set -eux; \ # save list of currently installed packages for later so we can clean up savedAptMark="$(apt-mark showmanual)"; \ @@ -59,7 +59,7 @@ RUN set -eux; \ **Note:** when using Alpine, it's probably also worth checking out [`su-exec`](https://github.com/ncopa/su-exec) (`apk add --no-cache su-exec`) instead, which since version 0.2 is fully `gosu`-compatible in a fraction of the file size. ```dockerfile -ENV GOSU_VERSION 1.13 +ENV GOSU_VERSION 1.14 RUN set -eux; \ \ apk add --no-cache --virtual .gosu-deps \ diff --git a/hub/Dockerfile.alpine b/hub/Dockerfile.alpine index b2df47b..2d91d80 100644 --- a/hub/Dockerfile.alpine +++ b/hub/Dockerfile.alpine @@ -1,7 +1,7 @@ FROM alpine:3.14 # https://github.com/tianon/gosu/releases -ENV GOSU_VERSION 1.13 +ENV GOSU_VERSION 1.14 RUN set -eux; \ apk add --no-cache --virtual .fetch-deps dpkg gnupg; \ diff --git a/version.go b/version.go index 92685fa..ea5e89c 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package main -const Version = "1.13" +const Version = "1.14"