-
-
Save Dannieib/259b90fc92074fe9eb109d5c6500979d to your computer and use it in GitHub Desktop.
Smarter ASP.NET Core Docker File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM microsoft/dotnet:2.0-sdk as builder | |
RUN mkdir -p /root/src/app/aspnetcoreapp | |
WORKDIR /root/src/app/aspnetcoreapp | |
#copy just the project file over | |
# this prevents additional extraneous restores | |
# and allows us to resuse the intermediate layer | |
# This only happens again if we change the csproj. | |
# This means WAY faster builds! | |
COPY aspnetcoreapp.csproj . | |
#Because we have a custom one | |
COPY nuget.config . | |
RUN dotnet restore ./aspnetcoreapp.csproj | |
COPY . . | |
RUN dotnet publish -c release -o published -r linux-arm | |
#Smaller - Best for apps with self-contained .NETs, as it doesn't include the runtime | |
FROM microsoft/dotnet:2.0.0-runtime-deps-stretch-arm32v7 | |
#Bigger - Best for apps .NETs that aren't self-contained. | |
#FROM microsoft/dotnet:2.0.0-runtime-stretch-arm32v7 | |
#FROM microsoft/dotnet:2.0.0-runtime-deps | |
#FROM microsoft/dotnet:2.0.0-runtime | |
WORKDIR /root/ | |
COPY --from=builder /root/src/app/aspnetcoreapp/published . | |
ENV ASPNETCORE_URLS=http://+:5000 | |
EXPOSE 5000/tcp | |
#CMD ["dotnet", "./aspnetcoreapp.dll"] | |
CMD ["./aspnetcoreapp"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment