Skip to content
This repository was archived by the owner on Dec 5, 2023. It is now read-only.

Commit 7c843d7

Browse files
author
Vishal Lal
committed
Add HalKit to csproj, add windows Docker file
1 parent c4d0a75 commit 7c843d7

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

docker/orders.net/Dockerfile-msft

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM microsoft/dotnet:latest
2+
3+
COPY . /app
4+
5+
WORKDIR /app
6+
7+
RUN ["dotnet", "restore"]
8+
RUN ["dotnet", "build"]
9+
10+
EXPOSE 80/tcp
11+
12+
ENTRYPOINT ["dotnet", "run", "--server.urls", "http://0.0.0.0:80"]

orders.NET.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14+
<PackageReference Include="HalKit" Version="0.8.0" />
1415
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.0.2" />
1516
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.2" />
1617
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.0.3" />

0 commit comments

Comments
 (0)