Skip to content

Commit

Permalink
Update arm32v7 base image to .NET Core 2.1 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
LazarusX authored Jun 22, 2018
1 parent e7412dd commit 62c5888
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Microsoft.Azure.IoT.Edge.Module.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>Microsoft.Azure.IoT.Edge.Module</id>
<version>2.0.0-rc4</version>
<version>2.0.0-rc5</version>
<title>Azure IoT Edge Module</title>
<authors>Microsoft</authors>
<owners>microsoft, nugetazureiotedge</owners>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/dotnet:2.0-sdk AS build-env
FROM microsoft/dotnet:2.1-sdk AS build-env
WORKDIR /app

COPY *.csproj ./
Expand All @@ -7,7 +7,7 @@ RUN dotnet restore
COPY . ./
RUN dotnet publish -c Release -o out

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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM microsoft/dotnet:2.0-sdk AS build-env
FROM microsoft/dotnet:2.1-sdk AS build-env
WORKDIR /app

COPY *.fsproj ./
Expand All @@ -7,7 +7,7 @@ RUN dotnet restore
COPY . ./
RUN dotnet publish -c Release -o out

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

Expand Down

0 comments on commit 62c5888

Please sign in to comment.