This repository has been archived by the owner on Aug 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to Go 1.13 and Alpine 3.10.3 (#34)
This change upgrades Go to the latest release 1.13.1 and Alpine to 3.10.3. Alpine is used to get certificates only so this a low risk upgrade.
- Loading branch information
Bjørn
authored
Oct 7, 2019
1 parent
77e20fe
commit b3aa77e
Showing
4 changed files
with
5 additions
and
3 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,6 +1,6 @@ | ||
language: go | ||
go: | ||
- "1.12.7" | ||
- "1.13.1" | ||
script: | ||
- go build ./... | ||
- go test ./... | ||
|
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.12.7 as builder | ||
FROM golang:1.13.1 as builder | ||
WORKDIR /src | ||
ENV CGO_ENABLED=0 | ||
ENV GOOS=linux | ||
|
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.8 as builder | ||
FROM alpine:3.10.3 as builder | ||
|
||
RUN apk update | ||
RUN apk add ca-certificates | ||
|
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