Skip to content

Commit 50e26df

Browse files
committed
Update to 1.15
1 parent e6d5129 commit 50e26df

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.14
21+
ENV GOSU_VERSION 1.15
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.14
62+
ENV GOSU_VERSION 1.15
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.14
4+
ENV GOSU_VERSION 1.15
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.14
4+
ENV GOSU_VERSION 1.15
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.14"
3+
const Version = "1.15"

0 commit comments

Comments
 (0)