diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 37c47db..0de38df 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,13 @@ Changelog ========= + +Unreleased +---------- + +Fixed +----- +- upgraded base docker image to 3.7 to fix nbgitpuller error + v9.4.2 ------ diff --git a/Dockerfile b/Dockerfile index a7726bd..9869c8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.6-slim-buster +FROM python:3.7-slim-buster MAINTAINER Strateos @@ -30,7 +30,7 @@ ENV PYTHON_EGG_CACHE /python_eggs # Install Jupyter, nbgitpuller for separate notebook/environment RUN pip install --no-cache-dir notebook==5.* && \ - pip install nbgitpuller + pip install nbgitpuller==1.* # Install TxPy RUN pip install 'transcriptic[jupyter, analysis]'