Upgrade Go to 1.13 in our Docker images (#1629)
This commit is contained in:
parent
94228bce2e
commit
e164cbe421
2
Makefile
2
Makefile
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue