fix inconsistent casing in Dockerfile

Switch from lower case "as" to upper case "AS" to be consistent with the other keywords.
This commit is contained in:
menaceone 2025-04-06 22:31:15 +02:00 committed by GitHub
parent 3b01c49095
commit 4877537a03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 && \