From 443ad74f7d3587bb67fd5ba347d8b7f0b5bbc6a4 Mon Sep 17 00:00:00 2001 From: Andrew Kahr <22359829+AndrewKahr@users.noreply.github.com> Date: Sun, 23 Jan 2022 18:39:59 -0800 Subject: [PATCH] Switch from add to copy in windows dockerfile --- dist/platforms/windows/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/platforms/windows/Dockerfile b/dist/platforms/windows/Dockerfile index 6ed4e651..5ccfd055 100644 --- a/dist/platforms/windows/Dockerfile +++ b/dist/platforms/windows/Dockerfile @@ -10,9 +10,9 @@ LABEL "repository"="http://github.com/game-ci/unity-actions" LABEL "homepage"="http://github.com/game-ci/unity-actions" LABEL "maintainer"="Webber Takken " -ADD default-build-script c:\UnityBuilderAction -ADD platforms/windows/steps c:\steps -ADD platforms/windows/entrypoint.ps1 c:\entrypoint.ps1 +COPY default-build-script c:\UnityBuilderAction +COPY platforms/windows/steps c:\steps +COPY platforms/windows/entrypoint.ps1 c:\entrypoint.ps1 RUN ls ENTRYPOINT ["powershell", "c:/entrypoint.ps1"]