12345678910111213141516171819202122232425262728293031323334 |
- #!/bin/sh
- # Build GO version as specified in Dockerfile
- set -x
- set -e
- # Components versions
- export GOLANG_VERSION="1.11"
- export GOLANG_SRC_URL="https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz"
- export GOLANG_SRC_SHA256="558f8c169ae215e25b81421596e8de7572bd3ba824b79add22fba6e284db1117"
- # Install build tools
- apk add --no-cache --no-progress --virtual build-deps-go gcc musl-dev openssl go
- export GOROOT_BOOTSTRAP="$(go env GOROOT)"
- # Download Go
- wget -q "$GOLANG_SRC_URL" -O golang.tar.gz
- echo "$GOLANG_SRC_SHA256 golang.tar.gz" | sha256sum -c -
- tar -C /usr/local -xzf golang.tar.gz
- rm golang.tar.gz
- # Build
- cd /usr/local/go/src
- # See https://golang.org/issue/14851
- patch -p2 -i /app/gitote/build/docker/no-pic.patch
- ./make.bash
- # Clean
- rm /app/gitote/build/docker/*.patch
- apk del build-deps-go
|