Skip to content

Commit e3e61e5

Browse files
authored
Merge pull request #220 from common-workflow-language/fix-install
add dependency on setuptools for html5lib
2 parents b0a6b5a + 0506121 commit e3e61e5

File tree

3 files changed

+166
-103
lines changed

3 files changed

+166
-103
lines changed

cwltool_module.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN apt-get update -qq && apt-get install -qqy \
88
python-setuptools gcc python-dev
99

1010
# Install cwltool
11-
ADD setup.py README.rst cwltool/ /root/cwltool/
11+
ADD setup.py README.rst ez_setup.py cwltool/ /root/cwltool/
1212
ADD cwltool/ /root/cwltool/cwltool
1313
ADD cwltool/schemas/ /root/cwltool/cwltool/schemas
14-
RUN cd /root/cwltool && easy_install .
14+
RUN cd /root/cwltool && ./ez_setup.py && easy_install .

0 commit comments

Comments
 (0)