diff --git a/Dockerfile b/Dockerfile index 86655f5..4881c2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 # Use the official .NET 9.0 runtime as base image -FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base WORKDIR /app EXPOSE 8080 ENV ASPNETCORE_URLS=http://+:8080 diff --git a/Dockerfile.runtime b/Dockerfile.runtime index 2771a50..f881210 100644 --- a/Dockerfile.runtime +++ b/Dockerfile.runtime @@ -1,5 +1,5 @@ # Runtime-only Dockerfile for pre-built binaries -FROM mcr.microsoft.com/dotnet/aspnet:9.0 +FROM mcr.microsoft.com/dotnet/aspnet:10.0 WORKDIR /app EXPOSE 8080 ENV ASPNETCORE_URLS=http://+:8080