Some checks failed
Build and Push to Gitea Registry / publish-images (push) Failing after 2m4s
11 lines
259 B
Docker
11 lines
259 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN dotnet restore
|
|
RUN dotnet publish -c Release -o out
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:10.0
|
|
WORKDIR /app
|
|
COPY --from=build /app/out .
|
|
EXPOSE 8080
|
|
ENTRYPOINT ["dotnet", "Backend.dll"] |