We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1074b1b + 2407623 commit cc343f0Copy full SHA for cc343f0
cwltool_module.Dockerfile
@@ -5,11 +5,12 @@ MAINTAINER [email protected]
5
6
# Let's start with some basic stuff.
7
RUN apt-get update -qq && apt-get install -qqy \
8
- python-setuptools gcc python-dev
+ python-setuptools gcc python-dev python-pip
9
10
# Install cwltool
11
ADD setup.py README.rst cwltool/ /root/cwltool/
12
ADD cwltool/ /root/cwltool/cwltool
13
ADD cwltool/schemas/ /root/cwltool/cwltool/schemas
14
ADD tests/ /root/cwltool/tests
15
-RUN cd /root/cwltool && python setup.py install
+RUN pip install -U pip setuptools wheel
16
+RUN pip install /root/cwltool
0 commit comments