From 6f501de68153d3f5adc8bd888f54e0e521f31270 Mon Sep 17 00:00:00 2001 From: Maxime Cornet Date: Thu, 4 Jul 2024 15:33:15 +0200 Subject: [PATCH] fix(typo): AS instead of as Use AS instead of as for the build of Name your build stages --- content/build/building/multi-stage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/build/building/multi-stage.md b/content/build/building/multi-stage.md index f153fb0679..449798db49 100644 --- a/content/build/building/multi-stage.md +++ b/content/build/building/multi-stage.md @@ -69,7 +69,7 @@ Dockerfile are re-ordered later, the `COPY` doesn't break. ```dockerfile # syntax=docker/dockerfile:1 -FROM golang:{{% param "example_go_version" %}} as build +FROM golang:{{% param "example_go_version" %}} AS build WORKDIR /src COPY <