update code-hints in engine reference

Regenerated the yaml files with the latest version from the
19.03 branch on docker/cli

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2020-03-17 17:06:42 +01:00
parent 30ea7f2562
commit 421e4ca41d
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
2 changed files with 4 additions and 4 deletions

View File

@ -717,7 +717,7 @@ examples: |-
specify an intermediate build stage by name as a final stage for the resulting
image. Commands after the target stage will be skipped.
```Dockerfile
```dockerfile
FROM debian AS build-env
...
@ -785,7 +785,7 @@ examples: |-
The example `Dockerfile` below uses a separate stage to collect the
build-artifacts for exporting:
```Dockerfile
```dockerfile
FROM golang AS build-stage
RUN go get -u github.com/LK4D4/vndr
@ -948,7 +948,7 @@ examples: |-
The following is an example of docker build with `--squash` argument
```Dockerfile
```dockerfile
FROM busybox
RUN echo hello > /hello
RUN echo world >> /hello

View File

@ -179,7 +179,7 @@ examples: |-
Digest can also be used in the `FROM` of a Dockerfile, for example:
```Dockerfile
```dockerfile
FROM ubuntu@sha256:45b23dee08af5e43a7fea6c4cf9c25ccf269ee113168c19722f87876677c5cb2
MAINTAINER some maintainer <maintainer@example.com>
```