SkiaSharp/samples/Basic/Docker/Console/Dockerfile

26 строки
729 B
Docker
Исходник Постоянная ссылка Обычный вид История

2019-12-08 16:21:53 +03:00
################################################################################
# Build Environment
################################################################################
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build-env
2019-12-08 16:21:53 +03:00
WORKDIR /app
# set up the contents
RUN mkdir packages
COPY . .
2019-12-08 16:21:53 +03:00
# build and publish
RUN dotnet publish -c Release -o /app/out
################################################################################
# Run Environment
################################################################################
FROM mcr.microsoft.com/dotnet/core/runtime:3.1
2019-12-08 16:21:53 +03:00
WORKDIR /app
# copy from the build environment
COPY --from=build-env /app/out .
# run
ENTRYPOINT [ "dotnet", "SkiaSharpSample.dll" ]