Skip to content

Commit

Permalink
Fix casing on Dockerfile
Browse files Browse the repository at this point in the history
Closes: #1532
  • Loading branch information
antonym committed Nov 9, 2024
1 parent cc085a7 commit 00cb2f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 && \
Expand Down

0 comments on commit 00cb2f2

Please sign in to comment.