build(buildkit): fix heredocs code block

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2022-11-05 09:08:12 +01:00
parent ba8ae8535f
commit f6349342ad
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ defining a mirror for `docker.io` (Docker Hub) to `mirror.gcr.io`.
3. Build an image:
```console
$ docker buildx build --load . -f - <<EOF
```bash
docker buildx build --load . -f - <<EOF
FROM alpine
RUN echo "hello world"
EOF