Fix GLIBC_2.38 mismatch: switch base image to ubuntu:24.04 #48

Merged
will.anderson merged 2 commits from dev into stage 2026-05-10 18:02:18 +00:00
+5 -3
View File
@@ -14,12 +14,14 @@
# - soul-demo: compiled by cc on host → dist/soul-demo
# - k3s: downloaded by curl on host → dist/k3s
FROM debian:bookworm-slim
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
libcurl4 \
libssl3 \
libcurl4t64 \
libssl3t64 \
ca-certificates \
&& rm -rf /var/lib/apt/lists/* \
&& groupadd -r landing && useradd -r -g landing landing \