fix(docker): switch runtime base to ubuntu:22.04 (glibc 2.35)
CI / Build Native (push) Has been cancelled

The native binary is built against glibc 2.35 (Ubuntu jammy in CI) but
quarkus-micro-image:2.0 ships glibc 2.34 (UBI 9), hence the
'GLIBC_2.35 not found' at runtime. Switching to ubuntu:22.04 as the
runtime base matches glibc exactly and lets us stop fighting with
musl / static binaries.

Dockerfile:
- FROM ubuntu:22.04 (was quarkus-micro-image:2.0)
- install curl + ca-certificates via apt (apt + bash are present, so
  chmod/echo securerandom run in-line again)
- single-stage: no more curl-builder multi-stage
- useradd UID 1001 (matches the in-container USER)

CI:
- drop binary-type=STATIC and --libc=musl (binary is dynamic again)
- drop the rm -f target/*-runner (cache invalidate)
- 'Stage binary for Docker' is now just 'cp'
- verify step is informational only

Image is ~5 MB larger than quarkus-micro-image but the runtime now
matches the build glibc, so the container starts cleanly.
This commit is contained in:
2026-08-14 15:45:05 -04:00
parent 6e3db41ba4
commit 2833e76914
2 changed files with 13 additions and 33 deletions
+4 -20
View File
@@ -21,10 +21,10 @@ jobs:
image: maven:3.9.6-eclipse-temurin-21 image: maven:3.9.6-eclipse-temurin-21
options: --memory=8g options: --memory=8g
steps: steps:
- name: Install git, node, gcc, musl, docker, buildx, and basic tools - name: Install git, node, gcc, docker, buildx, and basic tools
run: | run: |
apt-get update apt-get update
apt-get install -y git curl ca-certificates build-essential zlib1g-dev musl musl-tools docker.io docker-buildx apt-get install -y git curl ca-certificates build-essential zlib1g-dev docker.io docker-buildx
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
apt-get install -y nodejs apt-get install -y nodejs
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
@@ -33,7 +33,6 @@ jobs:
gcc --version gcc --version
docker --version docker --version
docker buildx version docker buildx version
musl-gcc --version 2>/dev/null || echo "musl-gcc not present (binary-type=STATIC won't produce static binaries)"
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -62,34 +61,19 @@ jobs:
restore-keys: ${{ runner.os }}-node- restore-keys: ${{ runner.os }}-node-
- name: Build (Native) - name: Build (Native)
run: | run: mvn package -Pnative -B -DskipTests -Dquarkus.native.native-image-xmx=4g
rm -f target/shot-crafter-calculator-1.0.0-runner
mvn package -Pnative -B -DskipTests \
-Dquarkus.native.native-image-xmx=4g \
-Dquarkus.native.binary-type=STATIC \
-Dquarkus.native.libc=musl \
-Dquarkus.native.additional-build-args=--libc=musl
- name: Verify native binary - name: Verify native binary
run: | run: |
ls -la target/shot-crafter-calculator-1.0.0-runner ls -la target/shot-crafter-calculator-1.0.0-runner
echo "" echo ""
echo "=== Library dependencies ===" echo "=== Library dependencies ==="
out=$(ldd target/shot-crafter-calculator-1.0.0-runner 2>&1 || true) ldd target/shot-crafter-calculator-1.0.0-runner 2>&1 || echo "(unable to determine)"
if echo "$out" | grep -q "not a dynamic executable"; then
echo "OK: binary is statically linked."
else
echo "FAIL: binary has dynamic dependencies:"
echo "$out"
exit 1
fi
- name: Stage binary for Docker - name: Stage binary for Docker
run: | run: |
mkdir -p build-output mkdir -p build-output
cp target/shot-crafter-calculator-1.0.0-runner build-output/ cp target/shot-crafter-calculator-1.0.0-runner build-output/
chmod 775 build-output/shot-crafter-calculator-1.0.0-runner
echo "securerandom.source=file:/dev/urandom" >> build-output/shot-crafter-calculator-1.0.0-runner
- name: Build & Push Docker image - name: Build & Push Docker image
if: github.event_name == 'push' && github.ref == 'refs/heads/main' if: github.event_name == 'push' && github.ref == 'refs/heads/main'
+9 -13
View File
@@ -1,18 +1,14 @@
FROM registry.access.redhat.com/ubi9/ubi-minimal AS curl-builder FROM ubuntu:22.04
RUN microdnf install -y curl-minimal && microdnf clean all \ RUN apt-get update \
&& mkdir -p /out/etc/pki /out/etc \ && apt-get install -y --no-install-recommends curl ca-certificates \
&& install -D -m 0755 /usr/bin/curl /out/usr/bin/curl \ && rm -rf /var/lib/apt/lists/* \
&& for lib in $(ldd /usr/bin/curl | awk '/=>/ {print $3}' | sort -u); do \ && useradd -u 1001 -U -M -s /usr/sbin/nologin app \
dest="/out$(echo "$lib" | sed 's|^/lib64|/usr/lib64|; s|^/lib|/usr/lib|')"; \ && mkdir -p /work \
install -D -m 0755 "$lib" "$dest"; \ && chown 1001:1001 /work
done \
&& cp -rP /etc/pki/ca-trust /out/etc/pki/ \
&& cp -rP /etc/ssl /out/etc/
FROM quay.io/quarkus/quarkus-micro-image:2.0
WORKDIR /work/ WORKDIR /work/
COPY --chown=1001:1001 build-output/*-runner /work/application COPY --chown=1001:1001 build-output/*-runner /work/application
COPY --from=curl-builder /out/ / RUN chmod 775 /work /work/application \
&& echo "securerandom.source=file:/dev/urandom" >> /work/application
EXPOSE 8080 EXPOSE 8080
USER 1001 USER 1001