From 4877537a03f691f735702921a4f30ab46a1fc7ce Mon Sep 17 00:00:00 2001 From: menaceone Date: Sun, 6 Apr 2025 22:31:15 +0200 Subject: [PATCH] fix inconsistent casing in Dockerfile Switch from lower case "as" to upper case "AS" to be consistent with the other keywords. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1c373cbc9..1ea3b3732 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Multistage docker build, requires docker 17.05 # builder stage -FROM ubuntu:20.04 as builder +FROM ubuntu:20.04 AS builder RUN set -ex && \ apt-get update && \