From 7b61f670a78c1b265e39a02309337176769976fd Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Mon, 3 Sep 2018 21:34:47 -0700 Subject: [PATCH] Don't print shell version during test --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c8cedf8..ba3651f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.5 RUN apk add --no-cache bash zsh curl WORKDIR /public COPY . . -RUN sh --help 2>&1 | head -n1 && sh ./test.sh -RUN zsh --version && zsh ./test.sh -RUN bash --version && bash ./test.sh +RUN sh ./test.sh +RUN zsh ./test.sh +RUN bash ./test.sh RUN echo "All tests passed!" > index.html