This is an automated email from the ASF dual-hosted git repository.
mitchell852 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
The following commit(s) were added to refs/heads/master by this push:
new e015960 split yum cmds/pip cmds in docs dockerfile (#3468)
e015960 is described below
commit e01596085bf1007e96789c61300132d68955be57
Author: Dan Kirkwood <[email protected]>
AuthorDate: Thu Apr 4 11:38:36 2019 -0600
split yum cmds/pip cmds in docs dockerfile (#3468)
---
infrastructure/docker/build/Dockerfile-docs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/infrastructure/docker/build/Dockerfile-docs
b/infrastructure/docker/build/Dockerfile-docs
index 5f5a284..6b5b97f 100644
--- a/infrastructure/docker/build/Dockerfile-docs
+++ b/infrastructure/docker/build/Dockerfile-docs
@@ -38,8 +38,8 @@ RUN yum -y install \
python36-pip \
python36-psutil \
make && \
- yum -y clean all && \
- python3 -m pip install --upgrade setuptools && \
+ yum -y clean all
+RUN python3 -m pip install --upgrade setuptools && \
python3 -m pip install -r /docs.requirements.txt
###