From 0e7347714352cd7f2e5edc9d2cf838d9934e6036 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 19 Dec 2022 16:41:18 -0800 Subject: [PATCH] Update to 1.16 --- INSTALL.md | 4 ++-- hub/Dockerfile.alpine | 2 +- hub/Dockerfile.debian | 2 +- version.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index abc10b6..a3fb3fa 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.15 +ENV GOSU_VERSION 1.16 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.15 +ENV GOSU_VERSION 1.16 RUN set -eux; \ \ apk add --no-cache --virtual .gosu-deps \ diff --git a/hub/Dockerfile.alpine b/hub/Dockerfile.alpine index 82bbb8b..d4aa706 100644 --- a/hub/Dockerfile.alpine +++ b/hub/Dockerfile.alpine @@ -1,7 +1,7 @@ FROM alpine:3.17 # https://github.com/tianon/gosu/releases -ENV GOSU_VERSION 1.15 +ENV GOSU_VERSION 1.16 RUN set -eux; \ apk add --no-cache --virtual .fetch-deps dpkg gnupg; \ diff --git a/hub/Dockerfile.debian b/hub/Dockerfile.debian index 8b51ece..1f68973 100644 --- a/hub/Dockerfile.debian +++ b/hub/Dockerfile.debian @@ -1,7 +1,7 @@ FROM debian:bullseye-slim # https://github.com/tianon/gosu/releases -ENV GOSU_VERSION 1.15 +ENV GOSU_VERSION 1.16 RUN set -eux; \ savedAptMark="$(apt-mark showmanual)"; \ diff --git a/version.go b/version.go index 81bce7c..3c46570 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package main -const Version = "1.15" +const Version = "1.16"