test images: Fixes apparmor-loader image

Currently, the image is not working properly because of the apparmor_parser giving this error:

Error relocating /sbin/apparmor_parser: secure_getenv: symbol not found

Updating musl to 1.1.20 or newer will fix this problem.
This commit is contained in:
Claudiu Belu 2021-01-22 15:25:47 +00:00
parent 82ebcd1719
commit f56d832943
2 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,8 @@ FROM $BASEIMAGE
CROSS_BUILD_COPY qemu-QEMUARCH-static /usr/bin/
RUN apk add apparmor libapparmor --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ --allow-untrusted
RUN apk add apparmor libapparmor --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ --allow-untrusted && \
apk add --no-cache musl\>1.1.20 --repository http://dl-cdn.alpinelinux.org/alpine/edge/main/
ADD loader /usr/bin/loader

View File

@ -1 +1 @@
1.2
1.3