File tree Expand file tree Collapse file tree 6 files changed +16
-13
lines changed Expand file tree Collapse file tree 6 files changed +16
-13
lines changed Original file line number Diff line number Diff line change @@ -659,8 +659,10 @@ jobs:
659
659
matrix :
660
660
include :
661
661
- mode : " dms"
662
+ docker-file : " windows-dms-dockerfile.zip"
662
663
zip-file : " windows-dms-binaries.zip"
663
664
- mode : " coreservice"
665
+ docker-file : " windows-core-dockerfile.zip"
664
666
zip-file : " windows-core-binaries.zip"
665
667
steps :
666
668
- name : Checkout repository
@@ -720,8 +722,8 @@ jobs:
720
722
- name : Upload Windows Dockerfile
721
723
uses : actions/upload-artifact@v4
722
724
with :
723
- name : windows- ${{ matrix.mode }}-dockerfile.zip
724
- path : windows- ${{ matrix.mode }}-dockerfile.zip
725
+ name : ${{ matrix.docker-file }}
726
+ path : ${{ matrix.docker-file }}
725
727
retention-days : 7
726
728
727
729
- name : Stop the Geometry service
@@ -772,7 +774,7 @@ jobs:
772
774
- name : Build Docker image
773
775
working-directory : docker
774
776
run : |
775
- docker build -f linux/Dockerfile -t ghcr.io/ansys/geometry:linux-tmp .
777
+ docker build -f linux/coreservice/ Dockerfile -t ghcr.io/ansys/geometry:linux-tmp .
776
778
777
779
- name : Launch Geometry service
778
780
run : |
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ release issues encountered
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ RUN apt-get update && \
17
17
COPY linux-core-binaries.zip .
18
18
RUN unzip -qq linux-core-binaries.zip -d . && \
19
19
rm linux-core-binaries.zip && \
20
- chmod -R 0755 DockerLinux && \
21
- mv DockerLinux/ bin/x64/Release_Linux /net8.0/* . && \
22
- rm -rf DockerLinux
20
+ chmod -R 0755 bin && \
21
+ mv bin/x64/Release_Core_Linux /net8.0/* . && \
22
+ rm -rf bin
23
23
24
24
# Let the dynamic link loader where to search for shared libraries
25
25
ENV LD_LIBRARY_PATH=/app:/app/CADIntegration/bin:/app/Native/Linux
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ WORKDIR /app
21
21
COPY windows-core-binaries.zip .
22
22
RUN mkdir tmp_folder && \
23
23
tar -xf windows-core-binaries.zip -C tmp_folder && \
24
- xcopy tmp_folder\D ockerWindows \ b in\x 64\R elease_Core_Windows\n et8.0\* . /e /i /h && \
25
- xcopy tmp_folder\D ockerWindows \ * . && \
24
+ xcopy tmp_folder\b in\x 64\R elease_Core_Windows\n et8.0\* . /e /i /h && \
25
+ xcopy tmp_folder\* . && \
26
26
del windows-core-binaries.zip && \
27
27
rmdir /s /q tmp_folder
28
28
@@ -47,4 +47,5 @@ LABEL org.opencontainers.image.vendor="ANSYS Inc."
47
47
EXPOSE 50051
48
48
49
49
# Define the entrypoint for the Geometry service
50
- ENTRYPOINT ["dotnet" , "C:\a pp\P resentation.ApiServerLinux.dll" ]
50
+ # hadolint ignore=DL3025
51
+ ENTRYPOINT dotnet C:\a pp\P resentation.ApiServerLinux.dll
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ WORKDIR /app
19
19
COPY windows-dms-binaries.zip .
20
20
RUN mkdir tmp_folder && \
21
21
tar -xf windows-dms-binaries.zip -C tmp_folder && \
22
- xcopy tmp_folder\D ockerWindows \ b in\x 64\R elease_Headless\n et472\* . /e /i /h && \
23
- xcopy tmp_folder\D ockerWindows \ * . && \
22
+ xcopy tmp_folder\b in\x 64\R elease_Headless\n et472\* . /e /i /h && \
23
+ xcopy tmp_folder\* . && \
24
24
del windows-dms-binaries.zip && \
25
25
rmdir /s /q tmp_folder
26
26
@@ -29,7 +29,7 @@ ENV LICENSE_SERVER=""
29
29
ENV SERVER_ENDPOINT="0.0.0.0:50051"
30
30
ENV ENABLE_TRACE=0
31
31
ENV LOG_LEVEL=2
32
- ENV AWP_ROOT251 =C:/app/unified
32
+ ENV AWP_ROOT252 =C:/app/unified
33
33
34
34
# Add container labels
35
35
LABEL org.opencontainers.image.authors="ANSYS Inc."
You can’t perform that action at this time.
0 commit comments