From dad05c17edc8008fad5690bad41ed6c028703d0a Mon Sep 17 00:00:00 2001 From: Ali Karami Date: Wed, 19 Dec 2018 14:22:53 +0330 Subject: [PATCH] Add libc6 to Dockerfile in run stage we found that in v5.21.0 there is missing `GLIBC_2.28` requirement and pod crashes. so we add `libc6` package which solves the issue. --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index e0b668d60..9caddbc61 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -33,7 +33,7 @@ RUN NPROC=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || 1) && \ FROM debian:buster-slim as runstage RUN mkdir -p /src && mkdir -p /opt RUN apt-get update && \ -apt-get install -y --no-install-recommends libboost-program-options1.67.0 libboost-regex1.67.0 \ +apt-get install -y --no-install-recommends libc6 libboost-program-options1.67.0 libboost-regex1.67.0 \ libboost-date-time1.67.0 libboost-chrono1.67.0 libboost-filesystem1.67.0 \ libboost-iostreams1.67.0 libboost-thread1.67.0 expat liblua5.2-0 libtbb2 &&\ rm -rf /var/lib/apt/lists/*