build/buildkit: fix image name

The title suggested a "hello-world" image, but we were building a
"hello-buildkit" image, but then trying to run "hello-world".

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2024-07-26 10:08:30 +02:00
parent 669e06355e
commit 43c7ad2aed
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 2 additions and 2 deletions

View File

@ -219,7 +219,7 @@ We appreciate any feedback you submit by [opening an issue here](https://github.
... ...
``` ```
9. Create a Dockerfile and build a `hello-world` image. 9. Create a Dockerfile and build a `hello-buildkit` image.
```console ```console
> mkdir sample_dockerfile > mkdir sample_dockerfile
@ -246,5 +246,5 @@ We appreciate any feedback you submit by [opening an issue here](https://github.
11. After pushing to the registry, run the image with `docker run`. 11. After pushing to the registry, run the image with `docker run`.
```console ```console
> docker run <username>/hello-world > docker run <username>/hello-buildkit
``` ```