Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Go 1.13.8 #53

Merged
merged 1 commit into from
Feb 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
ARG GO_VERSION=1.12.17
ARG GO_VERSION=1.13.8

# OS-X SDK parameters
# NOTE: when changing version here, make sure to also change OSX_CODENAME below to match
# TODO Go 1.13 supports macOS 10.11 (el capitan) and higher. Update this to 10.11 SDK
# once an updated version of the SDK is available on s3.dockerproject.org
ARG OSX_SDK=MacOSX10.10.sdk
ARG OSX_SDK_SUM=631b4144c6bf75bf7a4d480d685a9b5bda10ee8d03dbf0db829391e2ef858789

# OSX-cross parameters. Go 1.11 requires OSX >= 10.10
# TODO Go 1.13 supports macOS 10.11 (el capitan) and higher. Update this to 10.11
# once an updated version of the SDK is available on s3.dockerproject.org
ARG OSX_VERSION_MIN=10.10
ARG OSX_CROSS_COMMIT=a9317c18a3a457ca0a657f08cc4d0d43c6cf8953

# Libtool parameters
ARG LIBTOOL_VERSION=2.4.6

# TODO Go 1.13 supports macOS 10.11 (el capitan) and higher. Update this to 'el_capitan'
# once an updated version of the SDK is available on s3.dockerproject.org
ARG OSX_CODENAME=yosemite

FROM golang:${GO_VERSION}-buster AS base
Expand Down