File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 21
21
ANSRV_GEO_PORT : 700
22
22
ANSRV_GEO_LICENSE_SERVER : ${{ secrets.LICENSE_SERVER }}
23
23
GEO_CONT_NAME : ans_geo
24
- RESET_IMAGE_CACHE : 0
24
+ RESET_IMAGE_CACHE : 1
25
25
26
26
concurrency :
27
27
group : ${{ github.workflow }}-${{ github.ref }}
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ WORKDIR /app
16
16
# Add the binary files from the latest release
17
17
COPY windows-binaries.zip .
18
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" .
19
+ RUN xcopy "tmp_folder\DockerWindows\bin\x64\Release_Headless\net472\*" ".\" /s /e /i /h
20
+ RUN xcopy "tmp_folder\DockerWindows\*" ".\"
20
21
RUN del windows-binaries.zip && rmdir /s /q tmp_folder
21
22
22
23
# Defining environment variables
You can’t perform that action at this time.
0 commit comments