fn-dotnet/Dockerfile
fnkit dc136f5405
All checks were successful
/ deploy (push) Successful in 33s
initial commit - dotnet function
2026-02-17 16:45:14 +00:00

12 lines
284 B
Docker

FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
LABEL fnkit.fn="true"
WORKDIR /src
COPY *.csproj ./
RUN dotnet restore
COPY . .
RUN dotnet publish -c Release -o /app
FROM mcr.microsoft.com/dotnet/aspnet:8.0
WORKDIR /app
COPY --from=build /app .
ENTRYPOINT ["dotnet", "fn-dotnet.dll"]