diff options
author | sfan5 <sfan5@live.de> | 2022-05-14 18:51:48 +0200 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2022-05-14 18:51:48 +0200 |
commit | 9b03bd324361a65eb33f384f7a9d7696d314f194 (patch) | |
tree | 0c54f668e00a4aba5a9d1254b1fb7e47785419ef | |
parent | 8f30456ee3f711f1eb4deee630af7e083a769a22 (diff) | |
download | minetest-9b03bd324361a65eb33f384f7a9d7696d314f194.tar.gz minetest-9b03bd324361a65eb33f384f7a9d7696d314f194.tar.bz2 minetest-9b03bd324361a65eb33f384f7a9d7696d314f194.zip |
Fix Docker build
prometheus-cpp switched to C++14 in April (after we did) so this issue only affects older branches.
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 8d1008fa2..93f6b982b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN apk add --no-cache git build-base cmake sqlite-dev curl-dev zlib-dev zstd-de rm -fr ./games/minetest_game/.git WORKDIR /usr/src/ -RUN git clone --recursive https://github.com/jupp0r/prometheus-cpp/ && \ +RUN git clone --recursive https://github.com/jupp0r/prometheus-cpp/ -b v1.0.0 && \ mkdir prometheus-cpp/build && \ cd prometheus-cpp/build && \ cmake .. \ |