Skip to content

Instantly share code, notes, and snippets.

@MarcBruins
Last active April 10, 2019 16:24
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 MarcBruins/985f727b9045567d956aafbeed98ef7f to your computer and use it in GitHub Desktop.
Save MarcBruins/985f727b9045567d956aafbeed98ef7f to your computer and use it in GitHub Desktop.
Plain functions dockerfile dotnet
FROM microsoft/dotnet:2.2-sdk AS installer-env
COPY . /src/dotnet-function-app
RUN cd /src/dotnet-function-app && \
mkdir -p /home/site/wwwroot && \
dotnet publish *.csproj --output /home/site/wwwroot
FROM mcr.microsoft.com/azure-functions/dotnet:2.0
ENV AzureWebJobsScriptRoot=/home/site/wwwroot
COPY --from=installer-env ["/home/site/wwwroot", "/home/site/wwwroot"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment