diff --git a/scipy2024/README.rst b/scipy2024/README.rst index 70783c5..8f7af81 100644 --- a/scipy2024/README.rst +++ b/scipy2024/README.rst @@ -21,6 +21,12 @@ NOTE: This demonstration currently targets x86_64 CPUs running Linux operating systems and Apple M1 silicon running OSX. Other CPUs and operating systems will be supported in the future. +If you want to quickly run the demos, you can run a development +snapshot of PIXIE with Docker, and then skip to "Running the demos" +below:: + + $ docker run -i --platform linux/amd64 -t numba/pixie-scipy24 + Set up instructions for all examples: 0. First create an environment and install PIXIE locally. PIXIE depends on the diff --git a/scipy2024/docker/demo_scipy24/Dockerfile b/scipy2024/docker/demo_scipy24/Dockerfile index d3cdf52..ec8b221 100644 --- a/scipy2024/docker/demo_scipy24/Dockerfile +++ b/scipy2024/docker/demo_scipy24/Dockerfile @@ -16,7 +16,7 @@ RUN conda init && source /root/.bashrc && conda activate scipy24 && cd /root/git RUN cd /root/git/numba && git apply /root/git/pixie/scipy2024/numba_bootstrap.patch -RUN cp /root/git/pixie/scipy2024/* . +RUN cp -r /root/git/pixie/scipy2024/* . RUN conda init && source /root/.bashrc && conda activate scipy24 && python bootstrap.py /root/git/numba diff --git a/scipy2024/docker/makefile b/scipy2024/docker/makefile index 1f2b95f..97531ee 100644 --- a/scipy2024/docker/makefile +++ b/scipy2024/docker/makefile @@ -1,4 +1,4 @@ build: - docker build demo_scipy24 -t numba/scipy24 + docker build demo_scipy24 -t numba/pixie-scipy24 run: - docker run -i --platform linux/amd64 -t numba/scipy24 + docker run -i --platform linux/amd64 -t numba/pixie-scipy24