From 0a2cfa9de1a1c5e669b296106ffb814f868e5b83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Schle=C3=9Felmann?= Date: Sat, 21 Sep 2019 20:29:48 +0200 Subject: [PATCH] Fixed wrong docker base image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0024bdc..6e1fc0a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ COPY . ./ RUN dotnet publish -c Release -o out # Build runtime image -FROM mcr.microsoft.com/dotnet/core/aspnet:2.2 +FROM mcr.microsoft.com/dotnet/core/runtime:2.2 WORKDIR /app COPY --from=build-env /app/out . ENTRYPOINT ["dotnet", "zobo.dll"] \ No newline at end of file