From 4abd18fefefda8a06bcb08f210c41452b3d0bef5 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sun, 31 Mar 2019 14:53:59 +0200 Subject: [PATCH] Unsilenced setup.py output in Docker build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c2bc884d9..36a0b643a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,9 +27,9 @@ WORKDIR /tmp COPY material material COPY MANIFEST.in MANIFEST.in COPY package.json package.json +COPY README.md README.md COPY requirements.txt requirements.txt COPY setup.py setup.py -COPY README.md README.md # Perform build and cleanup artifacts RUN \ @@ -37,7 +37,7 @@ RUN \ git \ git-fast-import \ openssh \ - && python setup.py install 2>/dev/null \ + && python setup.py install \ && rm -rf /tmp/* # Set working directory