Skip to content

Commit cc343f0

Browse files
authored
Merge pull request #430 from common-workflow-language/dockerfile-tweak
fix Dockerfile
2 parents 1074b1b + 2407623 commit cc343f0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cwltool_module.Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ MAINTAINER [email protected]
55

66
# Let's start with some basic stuff.
77
RUN apt-get update -qq && apt-get install -qqy \
8-
python-setuptools gcc python-dev
8+
python-setuptools gcc python-dev python-pip
99

1010
# Install cwltool
1111
ADD setup.py README.rst cwltool/ /root/cwltool/
1212
ADD cwltool/ /root/cwltool/cwltool
1313
ADD cwltool/schemas/ /root/cwltool/cwltool/schemas
1414
ADD tests/ /root/cwltool/tests
15-
RUN cd /root/cwltool && python setup.py install
15+
RUN pip install -U pip setuptools wheel
16+
RUN pip install /root/cwltool

0 commit comments

Comments
 (0)