diff --git a/Dockerfile b/Dockerfile index 8839aa2..fc465ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,5 +8,6 @@ RUN dotnet publish Apps.csproj -c release -o /app --no-restore FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS runtime LABEL service="servicestack-apps" WORKDIR /app +ENV ASPNETCORE_URLS=http://+:8080 COPY --from=build /app ./ ENTRYPOINT ["dotnet", "Apps.dll"] diff --git a/config/deploy.yml b/config/deploy.yml index a0cd79e..86ba1d0 100644 --- a/config/deploy.yml +++ b/config/deploy.yml @@ -21,7 +21,7 @@ proxy: ssl: true host: apps.servicestack.net # Proxy connects to your container on port 80 by default. - # app_port: 3000 + app_port: 8080 healthcheck: interval: 3 path: /metadata