From e1e50116a7151574f7ddfc05528bdf398e6f1566 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 29 Aug 2018 13:04:12 -0400 Subject: Initial commit --- Dockerfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e926cf3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +FROM astroconda/buildsys-vanilla +WORKDIR /build + +COPY build_openblas.sh . +RUN ./build_openblas.sh + +COPY build_cython.sh . +RUN ./build_cython.sh 3.5 \ + && ./build_cython.sh 3.6 \ + && ./build_cython.sh 3.7 + +COPY build_numpy.sh . +RUN ./build_numpy.sh 3.5 \ + && ./build_numpy.sh 3.6 \ + && ./build_numpy.sh 3.7 + +COPY build_scipy.sh . +RUN ./build_scipy.sh 3.5 \ + && ./build_scipy.sh 3.6 \ + && ./build_scipy.sh 3.7 + +WORKDIR /work -- cgit