From eee28d0d393c660878037547fa8c24be2360e9f3 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 1 Jun 2020 13:23:10 +0100 Subject: [PATCH] build: remove quicktest from Dockerfile This is making docker builds take too long and it isn't the place of the Docker file to be running unit tests. --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c80e04713..f6d5db3a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,6 @@ FROM golang AS builder COPY . /go/src/github.com/rclone/rclone/ WORKDIR /go/src/github.com/rclone/rclone/ -RUN make quicktest RUN \ CGO_ENABLED=0 \ make