use .net core runtime for agent rather than aspnet

This commit is contained in:
Collin M. Barrett 2019-06-29 17:56:02 -05:00
parent f3e5079f36
commit 9b6a3b9b57

View file

@ -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