Base the container image on busybox:uclibc

This busybox version is statically linked and provide a shell, should
you need one. It seems to be needed by the healthcheck command, so
there it is.
This commit is contained in:
Olivier Meunier
2024-03-09 13:40:30 +01:00
parent e422d18f38
commit 881481bc37

View File

@@ -24,7 +24,7 @@ build_image() {
trap cleanup ERR RETURN
# Prepare a scratch image
work_container=$(buildah from --arch=${arch} scratch)
work_container=$(buildah from --arch=${arch} busybox:uclibc)
# Copy CA certificates from alpine
buildah copy --from alpine:edge \