Closed stain closed 3 years ago
Workaround in 8e37ef5d63d3ca824520115b775d5438c345b49b but given that Debian 10 was released in 2019-07-06 perhaps it's rather time to update the base image..
@simleo point out:
The catch is that stretch does not support python 3.6, but switching to buster does not work either because it does not support openjdk 8 You get openjdk 11, which breaks Solr
There is now a new Dockerfile on the master branch which uses buster and should solve the problems.
$> docker run -it --rm fairdom/seek:workflow bash $> python --version Python 3.7.3
7f9ae90 bumped the cwltool version in
requirements.txt
to3.0.20201203173111
- however as the Debian 9 base image ofDockerfile
(viaruby:2.6-stretch
) is based on Python 3.5, building it will fail with:The last known Python 3.5 compatible
cwltool
is3.0.20200807132242
.Python 3.5 was deprecated with 5 Sept 2020 which is around the same time.
Suggestion: Change
Dockerfile
withsed
to force use of oldercwltool==3.0.20200807132242
– or update toFROM ruby:2.6-buster
?