Skip to content

Commit 0e73477

Browse files
committed
Update to 1.16
1 parent bb69d2a commit 0e73477

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN set -eux; \
1818
Older Debian releases (or newer `gosu` releases):
1919

2020
```dockerfile
21-
ENV GOSU_VERSION 1.15
21+
ENV GOSU_VERSION 1.16
2222
RUN set -eux; \
2323
# save list of currently installed packages for later so we can clean up
2424
savedAptMark="$(apt-mark showmanual)"; \
@@ -59,7 +59,7 @@ RUN set -eux; \
5959
**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.
6060

6161
```dockerfile
62-
ENV GOSU_VERSION 1.15
62+
ENV GOSU_VERSION 1.16
6363
RUN set -eux; \
6464
\
6565
apk add --no-cache --virtual .gosu-deps \

hub/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM alpine:3.17
22

33
# https://github.com/tianon/gosu/releases
4-
ENV GOSU_VERSION 1.15
4+
ENV GOSU_VERSION 1.16
55

66
RUN set -eux; \
77
apk add --no-cache --virtual .fetch-deps dpkg gnupg; \

hub/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:bullseye-slim
22

33
# https://github.com/tianon/gosu/releases
4-
ENV GOSU_VERSION 1.15
4+
ENV GOSU_VERSION 1.16
55

66
RUN set -eux; \
77
savedAptMark="$(apt-mark showmanual)"; \

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package main
22

3-
const Version = "1.15"
3+
const Version = "1.16"

0 commit comments

Comments
 (0)