Skip to content

Commit 62c5888

Browse files
authored
Update arm32v7 base image to .NET Core 2.1 (#36)
1 parent e7412dd commit 62c5888

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Microsoft.Azure.IoT.Edge.Module.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>Microsoft.Azure.IoT.Edge.Module</id>
5-
<version>2.0.0-rc4</version>
5+
<version>2.0.0-rc5</version>
66
<title>Azure IoT Edge Module</title>
77
<authors>Microsoft</authors>
88
<owners>microsoft, nugetazureiotedge</owners>

content/dotnet-template-azure-iot-edge-module/CSharp/Dockerfile.arm32v7

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/dotnet:2.0-sdk AS build-env
1+
FROM microsoft/dotnet:2.1-sdk AS build-env
22
WORKDIR /app
33

44
COPY *.csproj ./
@@ -7,7 +7,7 @@ RUN dotnet restore
77
COPY . ./
88
RUN dotnet publish -c Release -o out
99

10-
FROM microsoft/dotnet:2.0-runtime-stretch-arm32v7
10+
FROM microsoft/dotnet:2.1-runtime-stretch-slim-arm32v7
1111
WORKDIR /app
1212
COPY --from=build-env /app/out ./
1313

content/dotnet-template-azure-iot-edge-module/FSharp/Dockerfile.arm32v7

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/dotnet:2.0-sdk AS build-env
1+
FROM microsoft/dotnet:2.1-sdk AS build-env
22
WORKDIR /app
33

44
COPY *.fsproj ./
@@ -7,7 +7,7 @@ RUN dotnet restore
77
COPY . ./
88
RUN dotnet publish -c Release -o out
99

10-
FROM microsoft/dotnet:2.0-runtime-stretch-arm32v7
10+
FROM microsoft/dotnet:2.1-runtime-stretch-slim-arm32v7
1111
WORKDIR /app
1212
COPY --from=build-env /app/out ./
1313

0 commit comments

Comments
 (0)