1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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