Change startup url to avoid conflict

This commit is contained in:
iPromKnight
2024-02-29 11:18:08 +00:00
parent fcc4440a7d
commit 0f0298887c

View File

@@ -8,6 +8,8 @@ RUN dotnet publish -c Release --no-restore -o out -a $TARGETARCH
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine
ENV ASPNETCORE_URLS=http://+:5050
WORKDIR /App
COPY --from=build /App/out .
RUN addgroup -S metadata && adduser -S -G metadata metadata