From 63aca9c835b4853dd1cf71cca491fa9347992552 Mon Sep 17 00:00:00 2001 From: James Tufarelli <8152401+Minituff@users.noreply.github.com> Date: Fri, 20 Oct 2023 12:24:41 -0700 Subject: [PATCH] Remov empty quotes from platform args --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4e6c76a2..cde32de0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # Use base docker image. Contains the docker commands we need to start and stop containers FROM docker:24.0.6-cli -ARG TARGETPLATFORM="" -ARG BUILDPLATFORM="" +ARG TARGETPLATFORM +ARG BUILDPLATFORM RUN echo "I am running on $BUILDPLATFORM, building for $TARGETPLATFORM" ENV BUILDPLATFORM=${BUILDPLATFORM} ENV TARGETPLATFORM=${TARGETPLATFORM}