diff --git a/Dockerfile b/Dockerfile index bf89b2e..9772e34 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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