Skip to content

Commit 6456aaa

Browse files
committed
Update to 1.19
1 parent 8bab1fc commit 6456aaa

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

INSTALL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN set -eux; \
1717
Newer `gosu` releases:
1818

1919
```dockerfile
20-
ENV GOSU_VERSION 1.18
20+
ENV GOSU_VERSION 1.19
2121
RUN set -eux; \
2222
# save list of currently installed packages for later so we can clean up
2323
savedAptMark="$(apt-mark showmanual)"; \
@@ -51,7 +51,7 @@ Note: on Debian versions older than Trixie, you'll need to swap `apt-get dist-cl
5151
## `FROM alpine` (3.7+)
5252

5353
```dockerfile
54-
ENV GOSU_VERSION 1.18
54+
ENV GOSU_VERSION 1.19
5555
RUN set -eux; \
5656
\
5757
apk add --no-cache --virtual .gosu-deps \
@@ -83,7 +83,7 @@ RUN set -eux; \
8383
## `FROM centos|oraclelinux|...|ubi|...` (RPM-based distro)
8484

8585
```dockerfile
86-
ENV GOSU_VERSION 1.18
86+
ENV GOSU_VERSION 1.19
8787
RUN set -eux; \
8888
\
8989
rpmArch="$(rpm --query --queryformat='%{ARCH}' rpm)"; \

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.22
22

33
# https://github.com/tianon/gosu/releases
4-
ENV GOSU_VERSION 1.18
4+
ENV GOSU_VERSION 1.19
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:trixie-slim
22

33
# https://github.com/tianon/gosu/releases
4-
ENV GOSU_VERSION 1.18
4+
ENV GOSU_VERSION 1.19
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.18"
3+
const Version = "1.19"

0 commit comments

Comments
 (0)