-
Notifications
You must be signed in to change notification settings - Fork 462
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update functions binding runtime nuget package and update docker imag…
…es for functions samples (#410) * Update webjobs nuget and update SDK ProductInfo to new namespace * Update functions docker files * Update deployment for E2E tests to set debug logs for functions
- Loading branch information
1 parent
84be08c
commit c7ed2b5
Showing
5 changed files
with
19 additions
and
21 deletions.
There are no files selected for viewing
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
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
8 changes: 3 additions & 5 deletions
8
edge-modules/functions/samples/docker/linux/arm32v7/Dockerfile
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
ARG buildno | ||
FROM edgebuilds.azurecr.io/microsoft/azureiotedge-functions-binding:${buildno}-linux-arm32v7 | ||
FROM mcr.microsoft.com/azure-functions/dotnet:2.0-arm32v7 | ||
|
||
WORKDIR /app | ||
ENV AzureWebJobsScriptRoot=/app | ||
|
||
COPY samples/ samples/ | ||
COPY . /app | ||
|
||
ENV AzureWebJobsScriptRoot=samples |
9 changes: 2 additions & 7 deletions
9
edge-modules/functions/samples/docker/windows/amd64/Dockerfile
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
# escape=` | ||
|
||
ARG buildno | ||
FROM edgebuilds.azurecr.io/microsoft/azureiotedge-functions-binding:${buildno}-windows-amd64 | ||
FROM mcr.microsoft.com/azure-functions/dotnet:2.0-nanoserver-1803 | ||
|
||
WORKDIR /app | ||
|
||
COPY $EXE_DIR/ ./$FUNCTION_FILE_NAME | ||
|
||
ENV AzureWebJobsScriptRoot=samples | ||
COPY . /approot |
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