From 2dbf735c46a36a3ff65d1350cc68b5f1af53717c Mon Sep 17 00:00:00 2001 From: Benoit Tigeot Date: Thu, 12 Jun 2025 21:22:51 +0200 Subject: [PATCH] Prevent warning with `docker buildx build` command Without this patch ``` 1 warning found (use docker --debug to expand): - FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1) ``` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 727905d..bf85486 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24-alpine as builder +FROM golang:1.24-alpine AS builder ARG REVISION