From fbfc586f96829e0848aff12a0cf15948178d0efd Mon Sep 17 00:00:00 2001 From: Scion Date: Sun, 12 Mar 2023 18:12:54 -0700 Subject: [PATCH] fix --- unity-command/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/unity-command/Dockerfile b/unity-command/Dockerfile index d9de6d6..fee7ee3 100644 --- a/unity-command/Dockerfile +++ b/unity-command/Dockerfile @@ -1,5 +1,5 @@ #Arg is replaced with the desired Unity container. -ARG IMAGE=debian:stable-slim +ARG IMAGE=unityci/base:latest FROM ${IMAGE} RUN useradd -ms /bin/bash unity -u 1000 @@ -10,8 +10,8 @@ RUN chmod +x /entrypoint.sh COPY install-dotnet.sh / RUN bash /install-dotnet.sh -COPY UnityBuilder /usr/local/bin/ -RUN chmod +x /usr/local/bin/UnityBuilder +COPY UnityBuilder /usr/bin/ +RUN chmod +x /usr/bin/UnityBuilder ENTRYPOINT ["/entrypoint.sh"] USER unity \ No newline at end of file