diff --git a/CHANGELOG.md b/CHANGELOG.md index b4b9486..4a0f875 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [1.10.0] - 2019-04-22 +### Changed +- Update base datascience-python version to v5.0.0 (#28) +- Update civis-jupyter-notebook version to v0.4.5 (#28) + ## [1.9.0] - 2019-03-13 ### Fixed - Reverts version 1.8.0 (#25) diff --git a/Dockerfile b/Dockerfile index d3157e2..794e843 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM civisanalytics/datascience-python:4.2.0 +FROM civisanalytics/datascience-python:5.0.0 MAINTAINER support@civisanalytics.com # Version strings are set in datascience-python @@ -9,7 +9,7 @@ ENV VERSION= \ VERSION_MICRO= \ TINI_VERSION=v0.16.1 \ DEFAULT_KERNEL=python3 \ - CIVIS_JUPYTER_NOTEBOOK_VERSION=0.4.2 + CIVIS_JUPYTER_NOTEBOOK_VERSION=0.4.5 RUN DEBIAN_FRONTEND=noninteractive apt-get update -y --no-install-recommends && \ apt-get install -y --no-install-recommends software-properties-common && \ @@ -28,6 +28,7 @@ RUN chmod +x /tini RUN pip install civis-jupyter-notebook==${CIVIS_JUPYTER_NOTEBOOK_VERSION} && \ civis-jupyter-notebooks-install + RUN pip install git+git://github.com/civisanalytics/civis-mpl-style.git@v0.1.0 && \ install-civis-style @@ -36,4 +37,4 @@ WORKDIR /root/work # Configure container startup ENTRYPOINT ["/tini", "--"] -CMD ["civis-jupyter-notebooks-start"] +CMD ["civis-jupyter-notebooks-start"]