Skip to content

Commit a3ba65b

Browse files
authored
feat: update Dockerfile.windows (#591)
1 parent 88dcb5e commit a3ba65b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docker/Dockerfile.windows

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ WORKDIR /app
1616
# Add the binary files from the latest release
1717
COPY windows-binaries.zip .
1818
RUN mkdir tmp_folder && tar -xf windows-binaries.zip -C tmp_folder
19-
RUN for /R "tmp_folder" %f in (*) do move /Y "%f" .
19+
RUN xcopy "tmp_folder\DockerWindows\bin\x64\Release_Headless\net472\*" ".\" /s /e /i /h
20+
RUN xcopy "tmp_folder\DockerWindows\*" ".\"
2021
RUN del windows-binaries.zip && rmdir /s /q tmp_folder
2122

2223
# Defining environment variables

0 commit comments

Comments
 (0)