From d560c4e7535cd21e6c9de5aaef335d2b159d8573 Mon Sep 17 00:00:00 2001 From: Marius Date: Mon, 17 May 2021 00:08:36 +0200 Subject: [PATCH] ci: Update Docker image to Go 1.13 - The Go version now matches the one used for the GHA CI jobs - The Docker builds failed because a dependency changed and Go 1.12 was not able to use the version from go.sum (see https://hub.docker.com/repository/registry-1.docker.io/tusproject/tusd/builds/913de821-d650-454b-9f05-107862caedf3) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 969f873..17ae862 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.12-alpine AS builder +FROM golang:1.13-alpine AS builder # Copy in the git repo from the build context COPY . /go/src/github.com/tus/tusd/