Skip to content

Commit

Permalink
Merge pull request #38 from seibert/docker_fix
Browse files Browse the repository at this point in the history
Minor Dockerfile fix
  • Loading branch information
seibert authored Jul 8, 2024
2 parents 41043b5 + 48f20a1 commit ace1b93
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions scipy2024/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scipy2024/docker/demo_scipy24/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions scipy2024/docker/makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ace1b93

Please sign in to comment.