From f545a819b576b41e022f9a7c754e639f35489432 Mon Sep 17 00:00:00 2001 From: Blake Niemyjski Date: Sun, 31 Aug 2025 21:12:45 -0500 Subject: [PATCH] Updated docker build https://github.com/dotnet/dotnet-docker/blob/main/src/runtime-deps/10.0/noble/amd64/Dockerfile --- Dockerfile | 46 ++++++++++++++++++++++++++-------------------- 1 file changed, 26 insertions(+), 20 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9f1be4ff7..b88b82d71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -111,20 +111,23 @@ COPY ./build/supervisord.conf /etc/ USER root # install dotnet and supervisor -RUN apt-get update -y && \ - apt-get install -y --no-install-recommends \ - wget \ - apt-transport-https \ +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ supervisor \ + wget \ dos2unix \ + ca-certificates \ + \ + # .NET dependencies libc6 \ - libgcc1 \ - libgssapi-krb5-2 \ - libicu66 \ - libssl1.1 \ + libgcc-s1 \ + libicu74 \ + libssl3t64 \ libstdc++6 \ - zlib1g && \ - dos2unix /app/docker-entrypoint.sh + tzdata \ + tzdata-legacy \ + && rm -rf /var/lib/apt/lists/* \ + && dos2unix /app/docker-entrypoint.sh ENV discovery.type=single-node \ xpack.security.enabled=false \ @@ -169,20 +172,23 @@ COPY ./build/supervisord.conf /etc/ USER root # install dotnet and supervisor -RUN apt-get update -y && \ - apt-get install -y --no-install-recommends \ - wget \ - apt-transport-https \ +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ supervisor \ + wget \ dos2unix \ + ca-certificates \ + \ + # .NET dependencies libc6 \ - libgcc1 \ - libgssapi-krb5-2 \ - libicu66 \ - libssl1.1 \ + libgcc-s1 \ + libicu74 \ + libssl3t64 \ libstdc++6 \ - zlib1g && \ - dos2unix /app/docker-entrypoint.sh + tzdata \ + tzdata-legacy \ + && rm -rf /var/lib/apt/lists/* \ + && dos2unix /app/docker-entrypoint.sh ENV discovery.type=single-node \ xpack.security.enabled=false \