13 lines
305 B
Markdown
13 lines
305 B
Markdown
|
# Snippets of the `Reproducible and error free scripts` presentation
|
||
|
Use the `Dockerfile` to build the image, which we name `r_example`:
|
||
|
|
||
|
```Bash
|
||
|
docker build -t r_example .
|
||
|
```
|
||
|
|
||
|
As specified in the image's Dockerfile (`CMD` line), by default it will run the unit tests:
|
||
|
|
||
|
```Bash
|
||
|
docker run r_example
|
||
|
```
|