From 3b5f154a4627244fee120ace6d5abf715acc0d61 Mon Sep 17 00:00:00 2001 From: Ray Fang Date: Fri, 7 Dec 2018 17:15:30 +0800 Subject: [PATCH] Update Windows base image to 1809 (#54) --- .../CSharp/Dockerfile.windows-amd64 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/dotnet-template-azure-iot-edge-module/CSharp/Dockerfile.windows-amd64 b/content/dotnet-template-azure-iot-edge-module/CSharp/Dockerfile.windows-amd64 index e71e209..4421cb7 100644 --- a/content/dotnet-template-azure-iot-edge-module/CSharp/Dockerfile.windows-amd64 +++ b/content/dotnet-template-azure-iot-edge-module/CSharp/Dockerfile.windows-amd64 @@ -7,7 +7,7 @@ RUN dotnet restore COPY . ./ RUN dotnet publish -c Release -o out -FROM microsoft/dotnet:2.1-runtime-nanoserver-1803 +FROM microsoft/dotnet:2.1-runtime-nanoserver-1809 WORKDIR /app COPY --from=build-env /app/out ./ ENTRYPOINT ["dotnet", "SampleModule.dll"] \ No newline at end of file