From c6a810f87e66c8d2158955ce7f66b413550fa894 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Mon, 18 Sep 2017 00:58:28 +0100 Subject: [PATCH] Pretend we have glibc --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index a9f359d..484da62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,9 @@ RUN chmod a+x /usr/local/bin/* && \ apk del curl unzip && \ rm -rf /tmp/* /var/tmp/* +RUN mkdir /lib64 && \ + ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2 + VOLUME ["/data"] ENV HOME /data WORKDIR /data