From c94f2d20b1ba936d27a181aa78e9f851bfefd40a Mon Sep 17 00:00:00 2001 From: Kyle Date: Sat, 7 Nov 2020 08:29:39 -0500 Subject: [PATCH] docs/builder: fix broken link Signed-off-by: kylemit --- docs/reference/builder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/builder.md b/docs/reference/builder.md index 510eab89ce..4ebe6ae6de 100644 --- a/docs/reference/builder.md +++ b/docs/reference/builder.md @@ -655,7 +655,7 @@ The `FROM` instruction initializes a new build stage and sets the [*Base Image*](https://docs.docker.com/glossary/#base_image) for subsequent instructions. As such, a valid `Dockerfile` must start with a `FROM` instruction. The image can be any valid image – it is especially easy to start by **pulling an image** from -the [*Public Repositories*](https://docs.docker.com/engine/tutorials/dockerrepos/). +the [*Public Repositories*](https://docs.docker.com/docker-hub/repos/). - `ARG` is the only instruction that may precede `FROM` in the `Dockerfile`. See [Understand how ARG and FROM interact](#understand-how-arg-and-from-interact).