Skip to content

Commit

Permalink
Update to 1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
tianon committed Dec 19, 2022
1 parent e6d5129 commit 50e26df
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN set -eux; \
Older Debian releases (or newer `gosu` releases):

```dockerfile
ENV GOSU_VERSION 1.14
ENV GOSU_VERSION 1.15
RUN set -eux; \
# save list of currently installed packages for later so we can clean up
savedAptMark="$(apt-mark showmanual)"; \
Expand Down Expand Up @@ -59,7 +59,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.14
ENV GOSU_VERSION 1.15
RUN set -eux; \
\
apk add --no-cache --virtual .gosu-deps \
Expand Down
2 changes: 1 addition & 1 deletion hub/Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.17

# https://github.com/tianon/gosu/releases
ENV GOSU_VERSION 1.14
ENV GOSU_VERSION 1.15

RUN set -eux; \
apk add --no-cache --virtual .fetch-deps dpkg gnupg; \
Expand Down
2 changes: 1 addition & 1 deletion hub/Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM debian:bullseye-slim

# https://github.com/tianon/gosu/releases
ENV GOSU_VERSION 1.14
ENV GOSU_VERSION 1.15

RUN set -eux; \
savedAptMark="$(apt-mark showmanual)"; \
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package main

const Version = "1.14"
const Version = "1.15"

0 comments on commit 50e26df

Please sign in to comment.