diff --git a/Dockerfile b/Dockerfile index ab4fbd4..d4b103b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,9 @@ RUN apk add --no-cache \ 'procps=~3.3' \ 'findutils=~4.6' \ 'ncurses=~6.1' \ - 'g++=~8.3' + 'g++=~8.3' \ + 'libc6-compat=~1.1' \ + && ln -s /lib64/ld-linux-x86-64.so.2 /lib/ld-linux-x86-64.so.2 # https://github.com/hadolint/hadolint/wiki/DL4006 SHELL ["/bin/bash", "-o", "pipefail", "-c"] @@ -155,4 +157,4 @@ RUN apk add --no-cache 'linux-headers=~4.19' \ # Entry point: start all services and applications. COPY entrypoint.sh / RUN chmod +x /entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["/entrypoint.sh"]