1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-24 07:30:12 +01:00

Unsilenced setup.py output in Docker build

This commit is contained in:
squidfunk 2019-03-31 14:53:59 +02:00
parent 7417a288e6
commit 4abd18fefe

View File

@ -27,9 +27,9 @@ WORKDIR /tmp
COPY material material COPY material material
COPY MANIFEST.in MANIFEST.in COPY MANIFEST.in MANIFEST.in
COPY package.json package.json COPY package.json package.json
COPY README.md README.md
COPY requirements.txt requirements.txt COPY requirements.txt requirements.txt
COPY setup.py setup.py COPY setup.py setup.py
COPY README.md README.md
# Perform build and cleanup artifacts # Perform build and cleanup artifacts
RUN \ RUN \
@ -37,7 +37,7 @@ RUN \
git \ git \
git-fast-import \ git-fast-import \
openssh \ openssh \
&& python setup.py install 2>/dev/null \ && python setup.py install \
&& rm -rf /tmp/* && rm -rf /tmp/*
# Set working directory # Set working directory