Upgrade Go to 1.13 in our Docker images (#1629)

This commit is contained in:
Adam Babik 2019-10-05 16:27:48 +02:00 committed by GitHub
parent 94228bce2e
commit e164cbe421
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ STATUSD_PRUNE_IMAGE_NAME ?= statusteam/statusd-prune
DOCKER_IMAGE_CUSTOM_TAG ?= $(RELEASE_TAG)
DOCKER_TEST_WORKDIR = /go/src/github.com/status-im/status-go/
DOCKER_TEST_IMAGE = golang:1.10
DOCKER_TEST_IMAGE = golang:1.13
# This is a code for automatic help generator.
# It supports ANSI colors and categories.

View File

@ -1,4 +1,4 @@
FROM golang:1.10-alpine as builder
FROM golang:1.13-alpine as builder
RUN apk add --no-cache make gcc musl-dev linux-headers git

View File

@ -1,5 +1,5 @@
# Build status-go in a Go builder container
FROM golang:1.10-alpine as builder
FROM golang:1.13-alpine as builder
RUN apk add --no-cache make gcc musl-dev linux-headers