Last active
April 10, 2019 16:24
-
-
Save MarcBruins/985f727b9045567d956aafbeed98ef7f to your computer and use it in GitHub Desktop.
Plain functions dockerfile dotnet
This file contains hidden or 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.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