From 3092b5b2d5689accec6c5f1d964e85ae7ae0a0f1 Mon Sep 17 00:00:00 2001 From: Marcin Michalski Date: Mon, 15 Nov 2021 22:13:41 +0000 Subject: [PATCH] Update physfs repo in Dockerfile (#1165) --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8259bce0..81ce26e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,12 +17,11 @@ RUN apt-get update; \ libopenal-dev \ libssl-dev \ libvorbis-dev \ - mercurial \ zlib1g-dev; \ apt-get clean && apt-get autoclean WORKDIR / -RUN hg clone -r stable-3.0 http://hg.icculus.org/icculus/physfs/ +RUN git clone --branch release-3.0.2 --depth 1 https://github.com/icculus/physfs.git WORKDIR /physfs/build/ RUN cmake .. RUN make -j$(nproc)