From 2448533706597f7dd80cce8ca291052f2d59ce2a Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Tue, 10 Nov 2020 11:26:30 +0100 Subject: [PATCH] wip: docker and travis --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8dffc61..29f8ef5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ ADD . /build/ WORKDIR /build # Build the Go app -RUN make build +RUN go clean -modcache; go mod tidy; make build ######- # Here starts the main image