Skip to content

Commit 9f7cd13

Browse files
committed
Update to 1.14
1 parent c5f80cc commit 9f7cd13

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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.13
21+
ENV GOSU_VERSION 1.14
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.13
62+
ENV GOSU_VERSION 1.14
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.14
22

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

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

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.13"
3+
const Version = "1.14"

0 commit comments

Comments
 (0)