diff --git a/Dockerfile b/Dockerfile index 93885f0..d838100 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,7 +61,7 @@ RUN set -eux; \ apk add --no-cache libintl; \ apk add --no-cache --virtual .locale_build git cmake make musl-dev gcc gettext-dev; \ git clone https://gitlab.com/rilian-la-te/musl-locales; \ - cd musl-locales && cmake -DLOCALE_PROFILE=OFF -DCMAKE_INSTALL_PREFIX:PATH=/usr . && make && make install; \ + cd musl-locales && sed -i '1i cmake_minimum_required(VERSION 3.10)' CMakeLists.txt && cmake -Wno-dev -DLOCALE_PROFILE=OFF -DCMAKE_INSTALL_PREFIX:PATH=/usr . && make && make install; \ cd .. && rm -r musl-locales; \ apk del .locale_build; \ rm -rf /var/cache/apk/*;