From 109c79ff5828afcdd1e6ba741e2f22239f9a899a Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Thu, 1 Feb 2018 20:34:02 -0800 Subject: [PATCH] Skip tests during Docker build Travis already exercises this. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6fc683b..477106e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ MAINTAINER Andrew Gaul WORKDIR /opt/s3proxy COPY . /opt/s3proxy/ -RUN mvn package +RUN mvn package -DskipTests # Multistage - Image FROM java:7u121-jre-alpine