Merge pull request #17811 from peterhauke/patch-10

Fix typo
This commit is contained in:
David Karlsson 2023-07-31 11:08:29 +02:00 committed by GitHub
commit 2c62ba1121
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ keywords: build, buildkit, buildx, guide, tutorial, introduction
{% include_relative nav.html selected="1" %}
The starting resources for this guide includes a simple Go project and a
The starting resources for this guide include a simple Go project and a
Dockerfile. From this starting point, the guide illustrates various ways that
you can improve how you build the application with Docker.
@ -95,7 +95,7 @@ Heres what this Dockerfile does:
6. `RUN go build -o /bin/client ./cmd/client`
Builds the `client` binary, used to send messages to be translated, into the
Builds the `client` binary, which is used to send messages to be translated, into the
`/bin` directory.
7. `RUN go build -o /bin/server ./cmd/server`