All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aspnetcore.2.0.Dockerfile.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
FROM microsoft/aspnetcore-build:2.0 AS build-env
WORKDIR /app

ENV DOTNET_CLI_TELEMETRY_OPTOUT 1

# 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/aspnetcore:2.0
WORKDIR /app
COPY --from=build-env /app/out .
ENTRYPOINT ["dotnet", "{{packageName}}.dll"]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy