Add Gitea deploy workflow
Deploy / deploy (push) Has been cancelled

This commit is contained in:
2026-06-07 18:56:42 +09:00
parent 6f9cc0bbbb
commit 2951c7ae17
2 changed files with 64 additions and 3 deletions
+2 -3
View File
@@ -9,11 +9,10 @@ RUN dotnet publish -c Release -o /app/publish --no-restore
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS runtime
ENV ASPNETCORE_URLS=http://0.0.0.0:8080
ENV ASPNETCORE_URLS=http://0.0.0.0:5000
WORKDIR /app
COPY --from=build /app/publish /app
EXPOSE 80
EXPOSE 5000
ENTRYPOINT ["dotnet", "LowLevelGuyCom.dll"]