FROM python:3.9 WORKDIR /app ADD . /app # solves this issue https://github.com/marcotcr/checklist/issues/144 RUN pip install "notebook==6.0.1" RUN pip install "checklist==0.0.11" RUN pip install -r requirements_from_rug_demo_version.txt CMD ["python", "-m", "sociolome.lome_webserver", "0.0.0.0"]