Skip to content

Commit

Permalink
Specify release (#602)
Browse files Browse the repository at this point in the history
  • Loading branch information
tba76 authored Jan 16, 2025
1 parent 36c0265 commit ae69ac2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine3.20 AS build
FROM mcr.microsoft.com/dotnet/sdk:9.0.102-alpine3.20 AS build

COPY src/Storage ./Storage
COPY src/DbTools ./DbTools
Expand All @@ -12,7 +12,7 @@ WORKDIR ../Storage/
RUN dotnet build ./Altinn.Platform.Storage.csproj -c Release -o /app_output
RUN dotnet publish ./Altinn.Platform.Storage.csproj -c Release -o /app_output

FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine3.20 AS final
FROM mcr.microsoft.com/dotnet/aspnet:9.0.1-alpine3.20 AS final
EXPOSE 5010
WORKDIR /app
COPY --from=build /app_output .
Expand Down

0 comments on commit ae69ac2

Please sign in to comment.