Skip to content

Commit 78273ca

Browse files
author
Summer
authored
add docker debug file for linux-x64 (#2)
* add docker debug file for linux-x64 * update version
1 parent 63b2744 commit 78273ca

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
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>0.8.0</version>
5+
<version>0.9.0</version>
66
<title>Azure IoT Edge Module</title>
77
<authors>Microsoft</authors>
88
<owners>microsoft, nugetazureiotedge</owners>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM microsoft/dotnet:2.0.0-runtime
2+
3+
ARG EXE_DIR=.
4+
5+
WORKDIR /app
6+
7+
COPY $EXE_DIR/ ./
8+
9+
RUN apt-get update
10+
11+
RUN apt-get install -y unzip procps
12+
13+
RUN curl -sSL https://aka.ms/getvsdbgsh | bash /dev/stdin -v latest -l ~/vsdbg
14+
15+
CMD ["dotnet", "SampleModule.dll"]

0 commit comments

Comments
 (0)