Update go version to go 1.13rc2
This commit is contained in:
parent
cb7c5a8ca1
commit
3ed57e01a6
4 changed files with 4 additions and 4 deletions
|
@ -21,7 +21,7 @@ if [ -n "$SHOULD_TEST" ]; then docker version; fi
|
|||
|
||||
export GO_VERSION=1.12
|
||||
if [ -f "./go.mod" ]; then GO_VERSION="$(grep '^go .*' go.mod | awk '{print $2}')"; export GO_VERSION; fi
|
||||
if [ "${GO_VERSION}" == '1.13' ]; then export GO_VERSION=1.13rc1; fi
|
||||
if [ "${GO_VERSION}" == '1.13' ]; then export GO_VERSION=1.13rc2; fi
|
||||
echo "Selected Go version: ${GO_VERSION}"
|
||||
|
||||
if [ -f "./.semaphoreci/golang.sh" ]; then ./.semaphoreci/golang.sh; fi
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM golang:1.13rc1-alpine
|
||||
FROM golang:1.13rc2-alpine
|
||||
|
||||
RUN apk --update upgrade \
|
||||
&& apk --no-cache --no-progress add git mercurial bash gcc musl-dev curl tar ca-certificates tzdata \
|
||||
|
|
|
@ -28,7 +28,7 @@ Successfully tagged traefik-webui:latest
|
|||
[...]
|
||||
docker build -t "traefik-dev:4475--feature-documentation" -f build.Dockerfile .
|
||||
Sending build context to Docker daemon 279MB
|
||||
Step 1/10 : FROM golang:1.13rc1-alpine
|
||||
Step 1/10 : FROM golang:1.13rc2-alpine
|
||||
---> f4bfb3d22bda
|
||||
[...]
|
||||
Successfully built 5c3c1a911277
|
||||
|
|
|
@ -12,7 +12,7 @@ RUN yarn install
|
|||
RUN npm run build
|
||||
|
||||
# BUILD
|
||||
FROM golang:1.13rc1-alpine as gobuild
|
||||
FROM golang:1.13rc2-alpine as gobuild
|
||||
|
||||
RUN apk --update upgrade \
|
||||
&& apk --no-cache --no-progress add git mercurial bash gcc musl-dev curl tar ca-certificates tzdata \
|
||||
|
|
Loading…
Reference in a new issue