From 90c742671d4697eb47d7e7fe74144d2ca8ea41d5 Mon Sep 17 00:00:00 2001 From: Gabriela Cervantes Date: Tue, 5 Nov 2024 15:52:05 +0000 Subject: [PATCH] Fix warning in Dockerfile.peerpods While building this Dockerfile we got the following warning 'FromAsCasing: as and FROM keywords casing do not match', this PR fixes it. Signed-off-by: Gabriela Cervantes --- Dockerfile.peerpods | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.peerpods b/Dockerfile.peerpods index 0b7dea58..66e44c86 100644 --- a/Dockerfile.peerpods +++ b/Dockerfile.peerpods @@ -4,7 +4,7 @@ ARG IMG_NAME ARG IMG_VERSION # Build the manager binary -FROM ${IMG_NAME:-golang}:${IMG_VERSION:-1.22} as builder +FROM ${IMG_NAME:-golang}:${IMG_VERSION:-1.22} AS builder WORKDIR /workspace # Copy the Go Modules manifests