diff --git a/docker/bionic/Dockerfile b/docker/bionic/Dockerfile index 16471cac..f31021ab 100644 --- a/docker/bionic/Dockerfile +++ b/docker/bionic/Dockerfile @@ -92,6 +92,7 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then git clone https://github.com/ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then git clone https://github.com/alicevision/AliceVision.git --recursive && \ cd AliceVision && \ git checkout 0f6115b6af6183c524aa7fcf26141337c1cf3872 && \ + git submodule update -i && \ wget https://gist.githubusercontent.com/matlabbe/1df724465106c056ca4cc195c81d8cf0/raw/b3ed4cb8f9b270833a40d57d870a259eabfa4415/alicevision_0f6115b.patch && \ git apply alicevision_0f6115b.patch && \ mkdir build && \ diff --git a/docker/focal/Dockerfile b/docker/focal/Dockerfile index b1f478a1..5cb3686b 100644 --- a/docker/focal/Dockerfile +++ b/docker/focal/Dockerfile @@ -144,6 +144,7 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then git clone https://github.com/ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then git clone https://github.com/alicevision/AliceVision.git --recursive && \ cd AliceVision && \ git checkout 0f6115b6af6183c524aa7fcf26141337c1cf3872 && \ + git submodule update -i && \ wget https://gist.githubusercontent.com/matlabbe/1df724465106c056ca4cc195c81d8cf0/raw/b3ed4cb8f9b270833a40d57d870a259eabfa4415/alicevision_0f6115b.patch && \ git apply alicevision_0f6115b.patch && \ mkdir build && \