From 07fe8d4481cd8fd14ac34afefcbf642df73e4b83 Mon Sep 17 00:00:00 2001 From: Benjamin Wheeler <34549440+benjamin051000@users.noreply.github.com> Date: Fri, 10 May 2024 06:00:15 -0400 Subject: [PATCH] Dockerfile: Use the default branch when cloning libspatialindex repository (#14621) --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 701c0492a..39974a1c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ ARG DOCKER_IMAGE=alpine:3.19 FROM $DOCKER_IMAGE AS dev -ENV SPATIALINDEX_VERSION master ENV LUAJIT_VERSION v2.1 RUN apk add --no-cache git build-base cmake curl-dev zlib-dev zstd-dev \ @@ -19,7 +18,7 @@ RUN git clone --recursive https://github.com/jupp0r/prometheus-cpp && \ cmake --build build && \ cmake --install build && \ cd /usr/src/ && \ - git clone --recursive https://github.com/libspatialindex/libspatialindex -b ${SPATIALINDEX_VERSION} && \ + git clone --recursive https://github.com/libspatialindex/libspatialindex && \ cd libspatialindex && \ cmake -B build \ -DCMAKE_INSTALL_PREFIX=/usr/local && \