From e17d88ef9acc7476d6ea0f1d8d73ba928ac138ff Mon Sep 17 00:00:00 2001 From: Maarten de Jong Date: Tue, 21 Nov 2023 15:44:05 +0100 Subject: [PATCH] Update `cjvalpy` to 0.4.1 in Dockerfile to avoid build issue with 0.3.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f7a18b1..e9fa62b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y ENV PATH="/root/.cargo/bin:$PATH" RUN pip install maturin -ARG CJVALPY_VERSION="0.3.2" +ARG CJVALPY_VERSION="0.4.1" RUN curl -L -o cjvalpy.tar.gz https://github.com/cityjson/cjvalpy/archive/refs/tags/${CJVALPY_VERSION}.tar.gz && \ tar -xvf cjvalpy.tar.gz && \ cd cjvalpy-${CJVALPY_VERSION} && \