Skip to content

Commit 679e38f

Browse files
committed
update versions
1 parent 5e14b91 commit 679e38f

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
**/[b|B]in/
2+
**/[O|o]bj/
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine AS build
22
WORKDIR /source
33

44
# copy csproj and restore as distinct layers
@@ -7,17 +7,18 @@ RUN dotnet restore -r linux-musl-x64
77

88
# copy and publish app and libraries
99
COPY sisk-cadente/ .
10-
RUN dotnet publish -c release -o /app
10+
RUN dotnet publish -c release -o /app -r linux-musl-x64 --no-restore --self-contained
11+
12+
# final stage/image
13+
FROM mcr.microsoft.com/dotnet/runtime-deps:10.0-alpine
1114

1215
ENV DOTNET_GCDynamicAdaptationMode=0
1316
ENV DOTNET_ReadyToRun=0
1417
ENV DOTNET_HillClimbing_Disable=1
1518

16-
# final stage/image
17-
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS runtime
1819
WORKDIR /app
1920
COPY --from=build /app .
2021

21-
ENTRYPOINT ["dotnet", "./sisk.dll"]
22+
ENTRYPOINT ["./sisk"]
2223

2324
EXPOSE 8080

frameworks/CSharp/sisk/sisk-cadente/sisk.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Sisk.Cadente" Version="1.0.0-beta4" />
12+
<PackageReference Include="Sisk.Cadente" Version="1.0.0-beta7" />
1313
</ItemGroup>
1414

1515
</Project>
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine AS build
22
WORKDIR /source
33

44
# copy csproj and restore as distinct layers
@@ -7,17 +7,18 @@ RUN dotnet restore -r linux-musl-x64
77

88
# copy and publish app and libraries
99
COPY sisk/ .
10-
RUN dotnet publish -c release -o /app -r linux-musl-x64
10+
RUN dotnet publish -c release -o /app -r linux-musl-x64 --no-restore --self-contained
11+
12+
# final stage/image
13+
FROM mcr.microsoft.com/dotnet/runtime-deps:10.0-alpine
1114

1215
ENV DOTNET_GCDynamicAdaptationMode=0
1316
ENV DOTNET_ReadyToRun=0
1417
ENV DOTNET_HillClimbing_Disable=1
1518

16-
# final stage/image
17-
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS runtime
1819
WORKDIR /app
1920
COPY --from=build /app .
2021

21-
ENTRYPOINT ["dotnet", "./sisk.dll"]
22+
ENTRYPOINT ["./sisk"]
2223

2324
EXPOSE 8080

frameworks/CSharp/sisk/sisk/sisk.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Sisk.HttpServer" Version="1.4.0-beta3" />
12+
<PackageReference Include="Sisk.HttpServer" Version="1.5.2" />
1313
</ItemGroup>
1414

1515
</Project>

0 commit comments

Comments
 (0)