Skip to content

Commit ace1b93

Browse files
authored
Merge pull request #38 from seibert/docker_fix
Minor Dockerfile fix
2 parents 41043b5 + 48f20a1 commit ace1b93

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

scipy2024/README.rst

+6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ NOTE: This demonstration currently targets x86_64 CPUs running Linux operating
2121
systems and Apple M1 silicon running OSX. Other CPUs and operating systems will
2222
be supported in the future.
2323

24+
If you want to quickly run the demos, you can run a development
25+
snapshot of PIXIE with Docker, and then skip to "Running the demos"
26+
below::
27+
28+
$ docker run -i --platform linux/amd64 -t numba/pixie-scipy24
29+
2430
Set up instructions for all examples:
2531

2632
0. First create an environment and install PIXIE locally. PIXIE depends on the

scipy2024/docker/demo_scipy24/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN conda init && source /root/.bashrc && conda activate scipy24 && cd /root/git
1616

1717
RUN cd /root/git/numba && git apply /root/git/pixie/scipy2024/numba_bootstrap.patch
1818

19-
RUN cp /root/git/pixie/scipy2024/* .
19+
RUN cp -r /root/git/pixie/scipy2024/* .
2020

2121
RUN conda init && source /root/.bashrc && conda activate scipy24 && python bootstrap.py /root/git/numba
2222

scipy2024/docker/makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
build:
2-
docker build demo_scipy24 -t numba/scipy24
2+
docker build demo_scipy24 -t numba/pixie-scipy24
33
run:
4-
docker run -i --platform linux/amd64 -t numba/scipy24
4+
docker run -i --platform linux/amd64 -t numba/pixie-scipy24

0 commit comments

Comments
 (0)