Skip to content

Commit

Permalink
Update dockerfile non-major dependencies (#59)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 10, 2024
1 parent 6b59128 commit 2d97905
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,5 +1,5 @@
#Use the official .NET SDK image with Alpine Linux as a base image
FROM mcr.microsoft.com/dotnet/sdk:8.0.402-alpine3.20 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0.403-alpine3.20 AS build

# Set the working directory in the container
WORKDIR /app
Expand All @@ -17,7 +17,7 @@ RUN dotnet publish -c Release -o out ./src/Altinn.Notifications.Sms/Altinn.Notif


# Use the official .NET runtime image with Alpine Linux as a base image
FROM mcr.microsoft.com/dotnet/aspnet:8.0.8-alpine3.20 AS final
FROM mcr.microsoft.com/dotnet/aspnet:8.0.10-alpine3.20 AS final
EXPOSE 5092
WORKDIR /app
COPY --from=build /app/out ./
Expand Down

0 comments on commit 2d97905

Please sign in to comment.