From 9b6a3b9b5740e00801b41fc2d75c10dd19b0bdea Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 29 Jun 2019 17:56:02 -0500 Subject: [PATCH] use .net core runtime for agent rather than aspnet --- src/FilterLists.Agent/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Agent/Dockerfile b/src/FilterLists.Agent/Dockerfile index a629232cd..e6b296871 100644 --- a/src/FilterLists.Agent/Dockerfile +++ b/src/FilterLists.Agent/Dockerfile @@ -2,7 +2,7 @@ # Command: docker build -f src/FilterLists.Agent/Dockerfile . # init base -FROM mcr.microsoft.com/dotnet/core/aspnet:2.2-alpine as base +FROM mcr.microsoft.com/dotnet/core/runtime:2.2-alpine as base ENTRYPOINT ["dotnet", "FilterLists.Agent.dll"] WORKDIR /app