back to the microsoft runtime

This commit is contained in:
Robin C. Ladiges 2022-07-03 19:35:31 +02:00
parent e0bdd0360c
commit 3973dab31e
No known key found for this signature in database
GPG Key ID: B494D3DF92661B99
1 changed files with 1 additions and 7 deletions

View File

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