diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 22 |
1 files changed, 22 insertions, 0 deletions
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 |