Skip to content

Instantly share code, notes, and snippets.

@grant
Created June 8, 2020 22:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grant/fa4e62f6151086390b51f6f9ef00f6f8 to your computer and use it in GitHub Desktop.
Save grant/fa4e62f6151086390b51f6f9ef00f6f8 to your computer and use it in GitHub Desktop.
.NET FF Dockerfile
# Use Microsoft's official build .NET image.
# https://hub.docker.com/_/microsoft-dotnet-core-sdk/
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-alpine AS build
WORKDIR /app
# Install production dependencies.
# Copy csproj and restore as distinct layers.
COPY *.csproj ./
RUN dotnet restore
# Copy local code to the container image.
COPY . ./
WORKDIR /app
# Build a release artifact.
RUN dotnet publish -c Release -o out
# Use Microsoft's official runtime .NET image.
# https://hub.docker.com/_/microsoft-dotnet-core-aspnet/
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-alpine AS runtime
WORKDIR /app
COPY --from=build /app/out ./
# Run the web service on container startup.
ENV FUNCTION_TARGET HelloFunctions.Function
ENTRYPOINT ["dotnet", "HelloFunctions.dll"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment