Skip to content

Commit 604bcb7

Browse files
committed
Merge branch 'main' into release/0.2
2 parents 6d27141 + a3ba65b commit 604bcb7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/docker_test_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121
ANSRV_GEO_PORT: 700
2222
ANSRV_GEO_LICENSE_SERVER: ${{ secrets.LICENSE_SERVER }}
2323
GEO_CONT_NAME: ans_geo
24-
RESET_IMAGE_CACHE: 0
24+
RESET_IMAGE_CACHE: 1
2525

2626
concurrency:
2727
group: ${{ github.workflow }}-${{ github.ref }}

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)