api.auth/Dockerfile
Robert Marshall 03b4088e19
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m43s
Update everything and add Forgejo workflow
2025-07-05 19:57:43 +01:00

9 lines
226 B
Docker

FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build-env
WORKDIR /app
COPY . ./
RUN ./build.sh
FROM mcr.microsoft.com/dotnet/aspnet:9.0
WORKDIR /app
COPY --from=build-env /app/output .
ENTRYPOINT ["dotnet", "Robware.Api.Auth.dll"]