From 239930c998972f871977e6e158199eb93855a9fe Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Wed, 16 Oct 2024 15:58:34 +0200 Subject: [PATCH] chore: fix FromAsCasing in Dockerfile example Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- docs/reference/buildx_build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/buildx_build.md b/docs/reference/buildx_build.md index 78c265a5..5f97c26c 100644 --- a/docs/reference/buildx_build.md +++ b/docs/reference/buildx_build.md @@ -626,7 +626,7 @@ For example, the following Dockerfile contains four stages: ```dockerfile # syntax=docker/dockerfile:1 -FROM oven/bun:1 as base +FROM oven/bun:1 AS base WORKDIR /app FROM base AS install