From 6910e6fc00f23ff6505d791c3cc40f24ad0a7b58 Mon Sep 17 00:00:00 2001 From: Giso Stallenberg Date: Thu, 6 Feb 2025 16:31:13 +0100 Subject: [PATCH] Fix case of FromAs This fixes a warning in newest docker builder ``` FromAsCasing: 'as' and 'FROM' keywords' casing do not match ``` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eb10c0f3..1bdaa954 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Alpine Builder -FROM alpine as builder +FROM alpine AS builder RUN apk add --no-cache curl COPY ./build/VERSION VERSION