forked from tianon/gosu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Go 1.19, Alpine 3.16, runc 1.1.4
- Loading branch information
Showing
5 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.17-alpine3.15 | ||
FROM golang:1.19-alpine3.16 | ||
|
||
RUN apk add --no-cache file | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
module github.com/tianon/gosu | ||
|
||
go 1.17 | ||
go 1.19 | ||
|
||
require github.com/opencontainers/runc v1.1.2 | ||
require github.com/opencontainers/runc v1.1.4 | ||
|
||
require golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect | ||
require golang.org/x/sys v0.0.0-20220907062415-87db552b00fd // indirect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.15 | ||
FROM alpine:3.16 | ||
|
||
# https://github.com/tianon/gosu/releases | ||
ENV GOSU_VERSION 1.14 | ||
|