From bd3da3d6c728bb2fa61a20b6b14fad1688137208 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Tue, 10 Nov 2020 11:59:02 +0100 Subject: [PATCH] wip: docker and travis --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 29f8ef5..669fde0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,9 @@ ADD . /build/ # Set the Current Working Directory inside the container WORKDIR /build +# Workaround for failing travis-ci builds +RUN rm -rf ~/go; rm -rf go.sum + # Build the Go app RUN go clean -modcache; go mod tidy; make build