change default port from 80 to 8080 as default

This commit is contained in:
Ryan Peters 2023-11-15 11:25:16 -05:00
parent 3eaa5c1910
commit be95f53647

View File

@ -8,6 +8,6 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
WORKDIR /app
COPY --from=build /app/publish .
EXPOSE 80
EXPOSE 8080
ENTRYPOINT ["dotnet", "BinaryDad.Notes.dll"]