diff --git a/Dockerfile b/Dockerfile index 869a2b9..655468f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,12 @@ WORKDIR /usr/src/server RUN echo server-port=$PORT_NUM >> server.properties RUN echo port=$EC_PORT_NUM >> esticonsole.properties +# Install glibc dependency +RUN apk --no-cache add ca-certificates wget +RUN wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://raw.githubusercontent.com/sgerrand/alpine-pkg-glibc/master/sgerrand.rsa.pub +RUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.27-r0/glibc-2.27-r0.apk +RUN apk add glibc-2.27-r0.apk + # RUN apk add --no-cache screen RUN mkdir /data