From 50cd90c271367821ddf1c4dfb824157822add118 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Thu, 6 Feb 2025 18:31:10 +0100 Subject: [PATCH] Dockerfile: Fix casing The warnings are appearing inside GitHub Actions about the inconsistent casing of keywords "from" and "as". Silence them. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 102be193b..dd1118e13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # # golang:1.23-bookworm is based on debian:bookworm, this is important to ensure we have libc compatibility for the copied binary -FROM --platform=linux/amd64 docker.io/amd64/golang:1.23-bookworm as builder-amd64 +FROM --platform=linux/amd64 docker.io/amd64/golang:1.23-bookworm AS builder-amd64 # We use dynamic linking when possible to reduce compile time and binary size ENV CGO_ENABLED=1 COPY . /usr/src/mantle