diff --git a/CS2VPKDecompiler-Github/Dockerfile b/CS2VPKDecompiler-Github/Dockerfile index 3939615..fcc5d06 100644 --- a/CS2VPKDecompiler-Github/Dockerfile +++ b/CS2VPKDecompiler-Github/Dockerfile @@ -5,7 +5,7 @@ RUN echo '\nAcquire::Retries "100";\nAcquire::https::Timeout "240";\nAcquire::ht ca-certificates \ && rm -rf /var/lib/apt/lists/* -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS dotnet +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS dotnet ARG BUILDARCH # https://stackoverflow.com/questions/70369368/check-architecture-in-dockerfile-to-get-amd-arm RUN echo "BUILDARCH: $BUILDARCH" && \ diff --git a/CS2VPKDecompiler/Dockerfile b/CS2VPKDecompiler/Dockerfile index 81d02aa..4633ede 100644 --- a/CS2VPKDecompiler/Dockerfile +++ b/CS2VPKDecompiler/Dockerfile @@ -5,7 +5,7 @@ RUN echo '\nAcquire::Retries "100";\nAcquire::https::Timeout "240";\nAcquire::ht ca-certificates \ && rm -rf /var/lib/apt/lists/* -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS dotnet +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS dotnet ARG BUILDARCH # https://stackoverflow.com/questions/70369368/check-architecture-in-dockerfile-to-get-amd-arm RUN echo "BUILDARCH: $BUILDARCH" && \ diff --git a/SteamWebPipes/Dockerfile b/SteamWebPipes/Dockerfile index 4cb1c43..f35a55f 100644 --- a/SteamWebPipes/Dockerfile +++ b/SteamWebPipes/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:6.0 AS dotnet +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS dotnet RUN mkdir /data && \ cd /data && \ git clone --depth=1 https://github.com/xPaw/SteamWebPipes.git && \