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

This commit is contained in:
Seth Falco
2021-06-25 22:20:54 +02:00
committed by GitHub
parent 85d8608478
commit c5bc7d0852

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}} .`