We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88dcb5e commit a3ba65bCopy full SHA for a3ba65b
docker/Dockerfile.windows
@@ -16,7 +16,8 @@ WORKDIR /app
16
# Add the binary files from the latest release
17
COPY windows-binaries.zip .
18
RUN mkdir tmp_folder && tar -xf windows-binaries.zip -C tmp_folder
19
-RUN for /R "tmp_folder" %f in (*) do move /Y "%f" .
+RUN xcopy "tmp_folder\DockerWindows\bin\x64\Release_Headless\net472\*" ".\" /s /e /i /h
20
+RUN xcopy "tmp_folder\DockerWindows\*" ".\"
21
RUN del windows-binaries.zip && rmdir /s /q tmp_folder
22
23
# Defining environment variables
0 commit comments