Merge pull request #20485 from thaJeztah/buildkit_getting_started

build/buildkit: fix image name
This commit is contained in:
Sebastiaan van Stijn 2024-07-26 10:50:27 +02:00 committed by GitHub
commit 6660884722
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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
> 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`.
```console
> docker run <username>/hello-world
> docker run <username>/hello-buildkit
```