fix: 修正Dockerfile中authserver服务的端口为8080

This commit is contained in:
2025-10-25 20:37:44 +08:00
parent b2af429f25
commit f832949999

View File

@ -1,7 +1,7 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
USER $APP_UID
WORKDIR /app
EXPOSE 8081
EXPOSE 8080
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
ARG BUILD_CONFIGURATION=Release