Skip to content

Commit

Permalink
Add missing dot
Browse files Browse the repository at this point in the history
  • Loading branch information
johnne committed Nov 28, 2024
1 parent 2601d2e commit 6340065
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pages/containers.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -1075,8 +1075,11 @@ there's a `COPY` statement just after: this is the directive that copies files
from the `build` stage into the current stage. We only copy the Python
environment itself, not the base environment nor the Conda installation.

- Copy the code above into a file called `multi.Dockerfile` and build it with
`docker build -f multi.Dockerfile -t my_docker_multi`.
- Copy the code above into a file called `multi.Dockerfile` and build it with:

```bash
docker build -f multi.Dockerfile -t my_docker_multi .
```

- List your docker images with `docker image ls` and compare the newly created
`my_docker_multi` with `my_docker_base`.
Expand Down

0 comments on commit 6340065

Please sign in to comment.