docker-build: add example with docker from stdin (#6103)

beep
Seth Falco 2021-06-25 22:20:54 +02:00 committed by GitHub
parent 85d8608478
commit c5bc7d0852
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,10 @@
`docker build --tag {{name:tag}} .`
- Build a docker image with no build context:
`docker build --tag {{name:tag}} - < {{Dockerfile}}`
- Do not use the cache when building the image:
`docker build --no-cache --tag {{name:tag}} .`