1
0
mirror of https://github.com/tianon/gosu.git synced 2025-04-18 19:04:06 +03:00

Update to 1.17

This commit is contained in:
Tianon Gravi 2023-11-02 14:34:38 -07:00
parent d1265292c7
commit 0d1847490b
4 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@ RUN set -eux; \
Newer `gosu` releases:
```dockerfile
ENV GOSU_VERSION 1.16
ENV GOSU_VERSION 1.17
RUN set -eux; \
# save list of currently installed packages for later so we can clean up
savedAptMark="$(apt-mark showmanual)"; \
@ -53,7 +53,7 @@ RUN set -eux; \
**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.
```dockerfile
ENV GOSU_VERSION 1.16
ENV GOSU_VERSION 1.17
RUN set -eux; \
\
apk add --no-cache --virtual .gosu-deps \

View File

@ -1,7 +1,7 @@
FROM alpine:3.17
# https://github.com/tianon/gosu/releases
ENV GOSU_VERSION 1.16
ENV GOSU_VERSION 1.17
RUN set -eux; \
apk add --no-cache --virtual .fetch-deps dpkg gnupg; \

View File

@ -1,7 +1,7 @@
FROM debian:bullseye-slim
# https://github.com/tianon/gosu/releases
ENV GOSU_VERSION 1.16
ENV GOSU_VERSION 1.17
RUN set -eux; \
savedAptMark="$(apt-mark showmanual)"; \

View File

@ -1,3 +1,3 @@
package main
const Version = "1.16"
const Version = "1.17"