d_sms_service/APT.MicroApi/APT.BS.WebApi/Dockerfile.original
2024-10-28 13:45:58 +08:00

16 lines
365 B
Docker

FROM microsoft/aspnetcore-build:latest AS build-env
WORKDIR /app
# copy csproj and restore as distinct layers
COPY *.csproj ./
RUN dotnet restore
# copy everything else and build
COPY . ./
RUN dotnet publish -c Release -o out
# build runtime image
FROM microsoft/dotnet:latest
WORKDIR /app
COPY --from=build-env /app/out .
ENTRYPOINT ["dotnet", "APT.WebApi.dll"]