From: Antonio Jimenez Pastor Date: Wed, 10 Jul 2019 15:08:13 +0000 (+0200) Subject: Added the Dockerfile for use of Binder X-Git-Url: http://git.risc.jku.at/gitweb/?a=commitdiff_plain;h=18a60b2b491a8ab982a4b534243ba1ad374c3747;p=ajpastor%2Fdiff_defined_functions.git Added the Dockerfile for use of Binder --- diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..979a19d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +# Dockerfile for binder +# Reference: https://mybinder.readthedocs.io/en/latest/dockerfile.html#preparing-your-dockerfile + +# Temporary work around: the first 8.2 image that was pushed to dockerhub was incompatible +FROM sagemath/sagemath:8.8 + +# Copy the contents of the repo in ${HOME} +COPY --chown=sage:sage . ${HOME} + +# Install this package and dependencies +# RUN sage -pip install .