From 00cb2f20b2ebe741fbdc193a37f3e8a879c89816 Mon Sep 17 00:00:00 2001 From: Antony Messerli Date: Sat, 9 Nov 2024 10:48:31 -0600 Subject: [PATCH] Fix casing on Dockerfile Closes: https://github.com/netbootxyz/netboot.xyz/issues/1532 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ed8be82437..78f3bea889 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG NBXYZ_OVERRIDES=default -FROM ghcr.io/netbootxyz/builder:latest as builder +FROM ghcr.io/netbootxyz/builder:latest AS builder # repo for build COPY . /ansible @@ -11,7 +11,7 @@ ENV EXTRA_VARS="" FROM builder AS netbootxyz-production ENV EXTRA_VARS="--extra-vars @script/netbootxyz-overrides.yml" -FROM netbootxyz-${NBXYZ_OVERRIDES} as final +FROM netbootxyz-${NBXYZ_OVERRIDES} AS final RUN \ echo "**** running ansible ****" && \ cd /ansible && \