From 2835283258dcede6a3f5a80a4a3fda5c566620f6 Mon Sep 17 00:00:00 2001
From: Christoph Manns <mannsc@strato.de>
Date: Fri, 18 Oct 2019 10:59:52 +0200
Subject: [PATCH] build: update golang to 1.13 (#4666)

---
 Dockerfile | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 23babc89cc..21be9c8a78 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -113,7 +113,11 @@ RUN chmod +x /usr/local/bin/composer
 
 RUN apt-get update && apt-get install -y bzr && apt-get clean
 
-ENV GOLANG_VERSION 1.12
+ENV GOLANG_VERSION 1.13
+
+# Disable GOPROXY and GOSUMDB until we offer a solid solution to configure
+# private repositories.
+ENV GOPROXY=direct GOSUMDB=off
 
 RUN wget -q -O go.tgz "https://golang.org/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz" && \
   tar -C /usr/local -xzf go.tgz && \
-- 
GitLab