From 628679fb793086f417e36c1a68c517f8c271b042 Mon Sep 17 00:00:00 2001 From: Nicolas Pouillard Date: Wed, 19 Nov 2014 23:55:05 +0100 Subject: [PATCH] [docker] stderr to stdout... --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 90643fb..1837b0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,5 +8,5 @@ RUN cabal update && cabal install haskoin base16-bytestring scientific binary RF ADD . /hx WORKDIR /hx RUN cabal install -RUN chmod +x /usr/bin/cmdcheck && /usr/bin/cmdcheck tests/*.t +RUN chmod +x /usr/bin/cmdcheck && /usr/bin/cmdcheck tests/*.t 2>&1 #RUN apt-get update && apt-get install ${OPTS_APT} lib-ghc...