Skip to content

Commit

Permalink
3.3.0-rc
Browse files Browse the repository at this point in the history
Fix curl not found issue (#41)
  • Loading branch information
SLdragon authored and rentu committed Apr 9, 2019
2 parents ace690b + ed8f476 commit d8b69ed
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,9 @@

[![Nuget](https://img.shields.io/nuget/v/Microsoft.Azure.IoT.Edge.Function.svg)](https://www.nuget.org/packages/Microsoft.Azure.IoT.Edge.Function/)

### 3.3.0 (2019-03-05)
* [Update] Update arm32v7.debug and amd64.debug Dockerfile to avoid "curl not found" issue

### 3.2.0 (2019-03-05)
* [Added] Add arm32v7.debug Dockerfile

Expand Down
2 changes: 1 addition & 1 deletion Microsoft.Azure.IoT.Edge.Function.nuspec
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>Microsoft.Azure.IoT.Edge.Function</id>
<version>3.2.0</version>
<version>3.3.0-rc</version>
<title>Azure IoT Edge Function</title>
<authors>Microsoft</authors>
<owners>microsoft, nugetazureiotedge</owners>
Expand Down
@@ -1,7 +1,7 @@
FROM mcr.microsoft.com/azure-functions/dotnet:2.0-iot-edge AS base

RUN apt-get update && \
apt-get install -y --no-install-recommends unzip procps && \
apt-get install -y --no-install-recommends unzip procps curl && \
curl -sSL https://aka.ms/getvsdbgsh | bash /dev/stdin -v latest -l ~/vsdbg && \
rm -rf /var/lib/apt/lists/*

Expand Down
@@ -1,7 +1,7 @@
FROM mcr.microsoft.com/azure-functions/dotnet:2.0-arm32v7 AS base

RUN apt-get update && \
apt-get install -y --no-install-recommends unzip procps && \
apt-get install -y --no-install-recommends unzip procps curl && \
curl -sSL https://aka.ms/getvsdbgsh | bash /dev/stdin -v latest -l ~/vsdbg && \
rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit d8b69ed

Please sign in to comment.