diff --git a/Docker/lofar-base/Dockerfile.tmpl b/Docker/lofar-base/Dockerfile.tmpl index 364f44a7dfe2e2a2107569f91d4f72c23ff82392..5f0f0ea719daf9d6ab364d89befd6e216008e4e7 100644 --- a/Docker/lofar-base/Dockerfile.tmpl +++ b/Docker/lofar-base/Dockerfile.tmpl @@ -71,10 +71,10 @@ RUN apt-get update && apt-get upgrade -y && \ apt-get autoclean -y && \ apt-get -y autoremove --purge -# Install numpy +# Install numpy and astropy RUN export BUILD_PACKAGES="python-setuptools python-pip" && \ apt-get install -y ${BUILD_PACKAGES} && \ - pip install numpy && \ + pip install numpy astropy && \ apt-get purge -y ${BUILD_PACKAGES} && \ apt-get clean -y && \ apt-get autoclean -y && \