diff --git a/docker-compose/jupyter/Dockerfile b/docker-compose/jupyter/Dockerfile index 6ecbfc0f185e698c74180290bcef8215fd42e62b..81df325a81ab0a3779554dd82704f005d802c31e 100644 --- a/docker-compose/jupyter/Dockerfile +++ b/docker-compose/jupyter/Dockerfile @@ -19,6 +19,9 @@ RUN sudo apt-get install -y git COPY requirements.txt ./ RUN sudo pip3 install -r requirements.txt +# Install some version of the casacore measures tables, to allow basic delay computation analysis in the notebooks +RUN sudo apt-get install -y casacore-data + # see https://github.com/jupyter/nbconvert/issues/1434 RUN sudo bash -c "echo DEFAULT_ARGS += [\\\"--no-sandbox\\\"] >> /usr/local/lib/python3.7/dist-packages/pyppeteer/launcher.py" RUN sudo apt-get update -y