From 316e00bb98fd33bac0af5fdbaf7caac4481bee82 Mon Sep 17 00:00:00 2001 From: foliengriller Date: Thu, 10 Oct 2024 13:22:25 +0200 Subject: [PATCH] Unified case in Dockerfile Example (#33774) This prevents a warning on build-time. https://docs.docker.com/reference/build-checks/from-as-casing/ Signed-off-by: foliengriller --- docs/guides/server/containers.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/server/containers.adoc b/docs/guides/server/containers.adoc index 36bae4048c5..50db3b86c39 100644 --- a/docs/guides/server/containers.adoc +++ b/docs/guides/server/containers.adoc @@ -29,7 +29,7 @@ The following `Containerfile` creates a pre-configured {project_name} image that .Containerfile: [source,dockerfile,subs="attributes+"] ---- -FROM quay.io/keycloak/keycloak:{containerlabel} as builder +FROM quay.io/keycloak/keycloak:{containerlabel} AS builder # Enable health and metrics support ENV KC_HEALTH_ENABLED=true