Skip to content

Commit 57c11c7

Browse files
authored
Merge pull request #293 from chapmanb/docker-no-ez_setup
Remove ez_setup from conformance test Docker
2 parents c949878 + 9535e97 commit 57c11c7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include gittaggers.py ez_setup.py Makefile cwltool.py
1+
include gittaggers.py Makefile cwltool.py
22
include tests/*
33
include tests/wf/*
44
include cwltool/schemas/v1.0/*.yml

cwltool_module.Dockerfile

+2-2
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 ez_setup.py cwltool/ /root/cwltool/
11+
ADD setup.py README.rst cwltool/ /root/cwltool/
1212
ADD cwltool/ /root/cwltool/cwltool
1313
ADD cwltool/schemas/ /root/cwltool/cwltool/schemas
14-
RUN cd /root/cwltool && ./ez_setup.py && easy_install .
14+
RUN cd /root/cwltool && python setup.py install

0 commit comments

Comments
 (0)