Merge pull request 'Fix GLIBC_2.38 mismatch: switch base image to ubuntu:24.04' (#47) from fix/entrypoint-k3s-nonblocking into dev
Dev — Build & local smoke test / build-smoke (push) Failing after 2m23s

Fix GLIBC_2.38 mismatch: switch base image to ubuntu:24.04
This commit was merged in pull request #47.
This commit is contained in:
2026-05-10 18:01:57 +00:00
+5 -3
View File
@@ -14,12 +14,14 @@
# - soul-demo: compiled by cc on host → dist/soul-demo # - soul-demo: compiled by cc on host → dist/soul-demo
# - k3s: downloaded by curl on host → dist/k3s # - k3s: downloaded by curl on host → dist/k3s
FROM debian:bookworm-slim FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
libcurl4 \ libcurl4t64 \
libssl3 \ libssl3t64 \
ca-certificates \ ca-certificates \
&& rm -rf /var/lib/apt/lists/* \ && rm -rf /var/lib/apt/lists/* \
&& groupadd -r landing && useradd -r -g landing landing \ && groupadd -r landing && useradd -r -g landing landing \