fix api url
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 4s
Build and Deploy API / build-and-deploy (push) Successful in 8s

This commit is contained in:
2026-02-28 18:33:41 -06:00
parent 3875e11660
commit a939fe2549

View File

@@ -12,7 +12,7 @@ RUN dotnet publish -c Release -o /app/publish
# run
FROM mcr.microsoft.com/dotnet/aspnet:10.0
WORKDIR /app
ENV ASPNETCORE_URLS=http://+:8080
ENV ASPNETCORE_URLS=http://+:5000
COPY --from=build /app/publish .
EXPOSE 8080