From b0aa5f44e9827bf0daab2daeb804a94712525794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20J=C3=BCrges?= <jurges@astron.nl> Date: Mon, 8 Apr 2019 09:06:28 +0000 Subject: [PATCH] ROHD-1611: Install astropy from pip --- Docker/lofar-base/Dockerfile.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docker/lofar-base/Dockerfile.tmpl b/Docker/lofar-base/Dockerfile.tmpl index 364f44a7dfe..5f0f0ea719d 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 && \ -- GitLab