Skip to content

Commit 049dd86

Browse files
committed
Fix docker file
1 parent a089e42 commit 049dd86

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0
1+
FROM mcr.microsoft.com/dotnet/sdk:9.0
22
WORKDIR /scip-dotnet
33
ADD . /scip-dotnet
44
RUN dotnet pack
55
ENV PATH="/root/.dotnet/tools:${PATH}"
6-
RUN dotnet tool install --framework net8.0 --add-source ScipDotnet/bin/Release/ --global scip-dotnet
6+
RUN dotnet tool install --framework net9.0 --add-source ScipDotnet/bin/Release/ --global scip-dotnet
77
RUN dotnet clean
88
WORKDIR /app
99
RUN rm -rf /scip-dotnet

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.100",
3+
"version": "9.0.0",
44
"rollForward": "latestMajor",
55
"allowPrerelease": false
66
}

0 commit comments

Comments
 (0)