From 777b3d1fd118b88389a2e7cb9003f17c71b2a2db Mon Sep 17 00:00:00 2001 From: Webber Date: Mon, 9 Dec 2019 23:00:50 +0100 Subject: [PATCH] Try variable image with args --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 03aef9a5..d0d67158 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,7 @@ -FROM gableroux/unity3d:2019.2.11f1-webgl +ARG IMAGE_VERSION=2019.2.11f1 +ARG IMAGE_TARGET=webgl + +FROM gableroux/unity3d:${IMAGE_VERSION}-${IMAGE_TARGET} LABEL "com.github.actions.name"="Unity - Builder" LABEL "com.github.actions.description"="Build Unity projects for different platforms."