From da2732b2ac01d33c66e1127aff43dd3e83b54c08 Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Thu, 26 Jun 2025 18:27:23 +0200 Subject: [PATCH] libcurl4 needed for 1664 --- build/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index e7cb447c2b..16bedcc9ab 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -59,11 +59,13 @@ RUN export TGS_TELEMETRY_KEY_FILE="../../${TGS_TELEMETRY_KEY_FILE}" \ FROM mcr.microsoft.com/dotnet/aspnet:8.0-bookworm-slim #needed for byond, curl for healthchecks -RUN apt-get update \ +RUN pkg --add-architecture i386 \ + && apt-get update \ && apt-get install -y \ gcc-multilib \ gdb \ curl \ + libcurl4:i386 \ && rm -rf /var/lib/apt/lists/* EXPOSE 5000