From a939fe2549a8da9eea937beac03bf8af21d84865 Mon Sep 17 00:00:00 2001 From: Blitblank Date: Sat, 28 Feb 2026 18:33:41 -0600 Subject: [PATCH] fix api url --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 73ed90f..7691d77 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -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