File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed
Altinn.App.Analyzers.Tests/testapp
Altinn.App.Integration.Tests/_testapps/basic Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 3636 "allowedVersions" : " <=4.0"
3737 },
3838 {
39- "matchDatasources" : [" docker" ],
40- "matchPackagePatterns" : [" ^mcr\\ .microsoft\\ .com/dotnet" ],
41- "pinDigests" : false
39+ "matchDatasources" : [
40+ " docker"
41+ ],
42+ "pinDigests" : false ,
43+ "matchPackageNames" : [
44+ " /^mcr\\ .microsoft\\ .com/dotnet/"
45+ ]
4246 }
4347 ]
4448}
Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine@sha256:b2ad158bbc77970a5095e02db40079970227f2d5aee0af0f82e38668d5e43a09 AS build
1+ FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build
22WORKDIR /App
33
44COPY /App/App.csproj .
@@ -8,7 +8,7 @@ COPY /App .
88
99RUN dotnet publish App.csproj --configuration Release --output /app_output
1010
11- FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine@sha256:c41927c17f93a060a001bbedf977c0aa30be3b7d6559ecc5b656edbac639cc84 AS final
11+ FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine AS final
1212EXPOSE 5005
1313WORKDIR /App
1414COPY --from=build /app_output .
Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine@sha256:b2ad158bbc77970a5095e02db40079970227f2d5aee0af0f82e38668d5e43a09 AS build
1+ FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build
22
33COPY NuGet.config .
44COPY _packages _packages/
@@ -14,7 +14,7 @@ RUN dotnet publish App.csproj --configuration Release --output /app_output
1414# Ensure that the config folder is copied to the output folder (policy.xml was missing)
1515RUN cp -R config /app_output/
1616
17- FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine@sha256:c41927c17f93a060a001bbedf977c0aa30be3b7d6559ecc5b656edbac639cc84 AS final
17+ FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine AS final
1818EXPOSE 5005
1919EXPOSE 5006
2020WORKDIR /App
Original file line number Diff line number Diff line change 11# Build stage
2- FROM mcr.microsoft.com/dotnet/sdk:8.0@sha256:ff8311847c54c04d1a14c488362807997d59b61372da5095a95f89cbcda7f9b7 AS build
2+ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
33WORKDIR /app-root-dir
44
55COPY AppLibDotnet.sln .
You can’t perform that action at this time.
0 commit comments