Skip to content

Commit

Permalink
fix: linux Dockerfile - replace .NET6.0 references by .NET8.0 (#1069)
Browse files Browse the repository at this point in the history
Co-authored-by: pyansys-ci-bot <[email protected]>
Co-authored-by: Roberto Pastor Muela <[email protected]>
  • Loading branch information
3 people authored Mar 19, 2024
1 parent c52b2b9 commit 52cba17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions doc/changelog.d/1069.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix: linux Dockerfile - replace .NET6.0 references by .NET8.0
6 changes: 3 additions & 3 deletions docker/linux/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Geometry service Linux-based Dockerfile
#
# Based on mcr.microsoft.com/dotnet/aspnet:6.0
FROM mcr.microsoft.com/dotnet/aspnet:6.0
# Based on mcr.microsoft.com/dotnet/aspnet:8.0
FROM mcr.microsoft.com/dotnet/aspnet:8.0

# Define the working directory - /app
WORKDIR /app
Expand All @@ -16,7 +16,7 @@ COPY linux-binaries.zip .
RUN unzip -qq linux-binaries.zip -d . && \
rm linux-binaries.zip && \
chmod -R 0755 DockerLinux && \
mv DockerLinux/bin/x64/Release_Linux/net6.0/* . && \
mv DockerLinux/bin/x64/Release_Linux/net8.0/* . && \
rm -rf DockerLinux

# Let the dynamic link loader where to search for shared libraries
Expand Down

0 comments on commit 52cba17

Please sign in to comment.