From 0a1003cda49a13e19f17e0e81dd40292052a47ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Wo=CC=81jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Thu, 3 Oct 2024 18:34:11 +0200 Subject: [PATCH] Fix 'as' and 'FROM' keywords' casing do not match --- docker/node/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/node/Dockerfile b/docker/node/Dockerfile index 8f11e144..5cee44c9 100644 --- a/docker/node/Dockerfile +++ b/docker/node/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 as builder +FROM ubuntu:22.04 AS builder ARG COMPILER=gcc ARG NANO_NETWORK=live @@ -10,7 +10,7 @@ RUN /tmp/prepare/prepare.sh COPY ./ /tmp/src WORKDIR /tmp/src -#Define ARGs for ci/build-node.sh +# Define ARGs for ci/build-node.sh ARG BUILD_TYPE=RelWithDebInfo ARG NANO_TEST=OFF ARG NANO_TRACING=OFF