Files

16 lines
251 B
Docker
Raw Permalink Normal View History

2025-10-04 17:41:02 +03:00
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build-env
2023-03-06 10:06:43 +04:00
WORKDIR /App
COPY . ./
RUN dotnet restore
RUN dotnet publish -c Release -o out
2025-10-04 17:41:02 +03:00
FROM mcr.microsoft.com/dotnet/runtime:9.0
2023-03-06 10:06:43 +04:00
WORKDIR /App
COPY --from=build-env /App/out .
ENTRYPOINT ["Ragon.Relay"]