From 5a4416be08b84a80fc5b54eb02c41adb3699cb19 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Wed, 12 Jun 2024 08:01:49 -0500 Subject: [PATCH] [CI:DOCS] Fix typos in podman-build Fix two typos in podman build as reported by #22946 FIXES: #22946 Signed-off-by: Brent Baude --- docs/source/markdown/podman-build.1.md.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/markdown/podman-build.1.md.in b/docs/source/markdown/podman-build.1.md.in index 8887e2193d..8c0c092b62 100644 --- a/docs/source/markdown/podman-build.1.md.in +++ b/docs/source/markdown/podman-build.1.md.in @@ -604,7 +604,7 @@ $ podman build https://10.10.10.1/podman/Containerfile #### Building an image using a Git repository Podman clones the specified GitHub repository to a temporary location and -use it as the context. The Containerfile at the root of the repository is used +uses it as the context. The Containerfile at the root of the repository is used and it only works if the GitHub repository is a dedicated repository. Build image from specified git repository downloaded into temporary location used as the build context: @@ -617,7 +617,7 @@ $ podman run hello #### Building an image using a URL to an archive - Podman fetches the archive file, decompress it, and use its contents as the + Podman fetches the archive file, decompresses it, and uses its contents as the build context. The Containerfile at the root of the archive and the rest of the archive are used as the context of the build. Passing the `-f PATH/Containerfile` option as well tells the system to look for that file