Skip to content

Commit 0d18474

Browse files
committed
Update to 1.17
1 parent d126529 commit 0d18474

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
Newer `gosu` releases:
1919

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

5555
```dockerfile
56-
ENV GOSU_VERSION 1.16
56+
ENV GOSU_VERSION 1.17
5757
RUN set -eux; \
5858
\
5959
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.16
4+
ENV GOSU_VERSION 1.17
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.16
4+
ENV GOSU_VERSION 1.17
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.16"
3+
const Version = "1.17"

0 commit comments

Comments
 (0)