commit 6f5261434d373d771aa77db9db8267cf73567f93 parent 22564dd18423a6511b347926f90266c84f734202 Author: MS <ms@taler.net> Date: Mon, 14 Nov 2022 16:51:02 +0100 make workaround conditional Diffstat:
| M | docker/demo/images/base/Dockerfile | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docker/demo/images/base/Dockerfile b/docker/demo/images/base/Dockerfile @@ -41,11 +41,11 @@ RUN ./configure --enable-logging=verbose --disable-documentation RUN make install WORKDIR /exchange -RUN git -C contrib/gana checkout 6b9824c # v0.9.0-compatible commit # Workaround a reported issue where the bootstrap script # always pulls the latest submodule version. That breaks # when moving the main repository to past versions. -RUN git submodule set-uri contrib/gana . +RUN test -n "$TAG_EXCHANGE" && git -C contrib/gana checkout 6b9824c # v0.9.0-compatible +RUN test -n "$TAG_EXCHANGE" && git submodule set-uri contrib/gana . RUN ./bootstrap RUN ./configure CFLAGS="-ggdb -O0" --enable-logging=verbose --disable-doc RUN make install