This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[update] upgrade container runtime to be compatible with iotedge 1.0.5.
[update] update container base images to dotnet 2.1 [new] add windows arm32v7 container output
- Loading branch information
Yu-Ping Huang (ManpowerGroup Taiwan)
committed
Jan 28, 2019
1 parent
482c568
commit c237eed
Showing
6 changed files
with
26 additions
and
12 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
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
13 changes: 13 additions & 0 deletions
13
iotedgeSQLite/modules/iotedgeSQLite/Dockerfile.windows-arm32v7
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM microsoft/dotnet:2.1-sdk AS build-env | ||
WORKDIR /app | ||
|
||
COPY *.csproj ./ | ||
RUN dotnet restore -r win10-arm | ||
|
||
COPY . ./ | ||
RUN dotnet publish -c Release -r win10-arm -o out | ||
|
||
FROM mcr.microsoft.com/windows/nanoserver:1809_arm | ||
WORKDIR /app | ||
COPY --from=build-env /app/out ./ | ||
CMD ["iotedgeSQLite.exe"] |
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