From 49918d2b9743e4d8273d74778131c5ad59e5b5ee Mon Sep 17 00:00:00 2001 From: Webber Date: Tue, 10 Dec 2019 23:13:23 +0100 Subject: [PATCH] Back to arg, inject with env? --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ef9d0e9b..94adc71b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -ENV IMAGE_VERSION "2019.0.00f0" -ENV IMAGE_TARGET "nothing" -FROM gableroux/unity3d:${IMAGE_VERSION}-${IMAGE_TARGET} +ARG IMAGE_VERSION_ARG=2019.0.00f0 +ARG IMAGE_TARGET_ARG=${IMAGE_TARGET} +FROM gableroux/unity3d:${IMAGE_VERSION_ARG}-${IMAGE_TARGET_ARG} LABEL "com.github.actions.name"="Unity - Builder" LABEL "com.github.actions.description"="Build Unity projects for different platforms."