fix stretch symlink

This commit is contained in:
Grant Limberg 2020-06-29 17:12:52 -07:00
parent 46c4a11a7a
commit 0589c4ab6a
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A

View file

@ -20,7 +20,7 @@ WORKDIR /cmake-3.17.3
RUN ./bootstrap && make -j8 && make install
WORKDIR /
RUN if test "$TARGETPLATFORM" = "linux/arm/v6"; then \
ln -s /lib/arm-linux-gnueabi/ld-2.30.so /lib/ld-linux-armhf.so.3; \
ln -s /lib/arm-linux-gnueabi/ld-2.24.so /lib/ld-linux-armhf.so.3; \
fi;
RUN groupadd -g 1000 jenkins-build && useradd -u 1000 -g 1000 jenkins-build