diff --git a/Directory.Packages.props b/Directory.Packages.props index aeda8ac..97789b3 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -11,10 +11,10 @@ - - + + - + diff --git a/global.json b/global.json index 9cb39ca..039f831 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.401", + "version": "8.0.402", "rollForward": "latestPatch" } } \ No newline at end of file diff --git a/src/ScreenshotCreator.Api/Dockerfile-Playwright b/src/ScreenshotCreator.Api/Dockerfile-Playwright index 02393a2..d539d2b 100644 --- a/src/ScreenshotCreator.Api/Dockerfile-Playwright +++ b/src/ScreenshotCreator.Api/Dockerfile-Playwright @@ -1,11 +1,11 @@ -FROM --platform=$TARGETARCH mcr.microsoft.com/dotnet/aspnet:8.0.8 AS base +FROM --platform=$TARGETARCH mcr.microsoft.com/dotnet/aspnet:8.0.10 AS base ARG TARGETARCH WORKDIR /app COPY src/ScreenshotCreator.Api/install-powershell-$TARGETARCH.sh /scripts/install-powershell-$TARGETARCH.sh RUN chmod +x /scripts/install-powershell-$TARGETARCH.sh RUN /scripts/install-powershell-$TARGETARCH.sh -FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0.402 AS sdk +FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0.403 AS sdk WORKDIR /src_playwright RUN dotnet new console --no-restore RUN dotnet add package Microsoft.Playwright