Skip to content

Commit a94d92a

Browse files
committed
fixed typo in docker instructions
1 parent c8d1eb2 commit a94d92a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Docker_instructions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This will open a shell inside the container.
2727
You can then run the examples with the following commands:
2828

2929
```bash
30-
cd /impact/examples
30+
cd /app/examples
3131
cd <specific example>
3232
make
3333
```
@@ -38,13 +38,13 @@ Furthermore, it is possible to mount a volume to the container to add more examp
3838
For example, if you create a folder `my-examples` in your home directory, you can mount it to the container with the following command:
3939

4040
```bash
41-
docker run --rm -it --name impact -v ~/my-examples:/impact/my-examples impact
41+
docker run --rm -it --name impact -v ~/my-examples:/app/examples impact
4242
```
4343

4444
And then you can run the examples with the following commands:
4545

4646
```bash
47-
cd /impact/my-examples
47+
cd /app/examples
4848
cd <specific example>
4949
make
5050
```
@@ -61,7 +61,7 @@ The results are stored in the in the same folder the example is located in.
6161
To copy them to your host machine, you can use use a [volume](#mounting-a-volume) or the `docker cp` command to copy them to your host machine.
6262

6363
```bash
64-
docker cp impact:/impact/my-examples/<specific example>/<result file> .
64+
docker cp impact:/app/examples/<specific example>/<result file> .
6565
# e.g.
6666
# docker cp impact:/app/examples/ex_2Drobot-R-U/fig.png .
6767
```

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ RUN apt-get update && apt-get install -y \
2929
libopenblas-dev \
3030
libopenmpi-dev \
3131
libhdf5-serial-dev \
32-
libopenblas-dev \
32+
libopenblas-dev \
3333
libomp-16-dev \
34-
liblapack-dev \
34+
liblapack-dev \
3535
libarpack2-dev \
3636
libboost-all-dev \
3737
libclang-16-dev \

0 commit comments

Comments
 (0)