File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
content/dotnet-template-azure-iot-edge-module Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
<package >
3
3
<metadata >
4
4
<id >Microsoft.Azure.IoT.Edge.Module</id >
5
- <version >2.0.0-rc4 </version >
5
+ <version >2.0.0-rc5 </version >
6
6
<title >Azure IoT Edge Module</title >
7
7
<authors >Microsoft</authors >
8
8
<owners >microsoft, nugetazureiotedge</owners >
Original file line number Diff line number Diff line change 1
- FROM microsoft/dotnet:2.0 -sdk AS build-env
1
+ FROM microsoft/dotnet:2.1 -sdk AS build-env
2
2
WORKDIR /app
3
3
4
4
COPY *.csproj ./
@@ -7,7 +7,7 @@ RUN dotnet restore
7
7
COPY . ./
8
8
RUN dotnet publish -c Release -o out
9
9
10
- FROM microsoft/dotnet:2.0 -runtime-stretch-arm32v7
10
+ FROM microsoft/dotnet:2.1 -runtime-stretch-slim -arm32v7
11
11
WORKDIR /app
12
12
COPY --from=build-env /app/out ./
13
13
Original file line number Diff line number Diff line change 1
- FROM microsoft/dotnet:2.0 -sdk AS build-env
1
+ FROM microsoft/dotnet:2.1 -sdk AS build-env
2
2
WORKDIR /app
3
3
4
4
COPY *.fsproj ./
@@ -7,7 +7,7 @@ RUN dotnet restore
7
7
COPY . ./
8
8
RUN dotnet publish -c Release -o out
9
9
10
- FROM microsoft/dotnet:2.0 -runtime-stretch-arm32v7
10
+ FROM microsoft/dotnet:2.1 -runtime-stretch-slim -arm32v7
11
11
WORKDIR /app
12
12
COPY --from=build-env /app/out ./
13
13
You can’t perform that action at this time.
0 commit comments