From 3973dab31eb8b4facf14046befd34b03a4512715 Mon Sep 17 00:00:00 2001 From: "Robin C. Ladiges" Date: Sun, 3 Jul 2022 19:35:31 +0200 Subject: [PATCH] back to the microsoft runtime --- Dockerfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index de912a8..23be278 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,13 +31,7 @@ RUN dotnet publish \ ################################################################################ ################################################################ runtime ### -FROM debian:11-slim as runtime - -# Download & install additional runtime dependencies -RUN apt-get update \ - && apt-get install -y libicu67 \ - && rm -rf /var/lib/apt/lists/* \ -; +FROM mcr.microsoft.com/dotnet/runtime:6.0 as runtime # Copy application binary from build stage COPY --from=build /app/out/ /app/