CAMI-challenge / OPAL

OPAL: Open-community Profiling Assessment tooL
https://cami-challenge.github.io/OPAL/
Apache License 2.0
26 stars 6 forks source link

Python version wrong? #29

Closed davidbio closed 2 years ago

davidbio commented 4 years ago

TL;DR The Dockerfile should start with

FROM python:3.7.0-slim

Long story: The README.MD states:

Requirements OPAL requires Python 3.7.

But the Dockerfile begins with:

FROM python:3.5.6-slim

I had to change the Dockerfile to

FROM python:3.7.0-slim

to make docker build work. Otherwise, pip complains about missing pip updates and matplotlib is only available in version 3.0.0, although requirements state that:

matplotlib==3.1.1

Comes without warranty, I am no expert with these tools.