summaryrefslogtreecommitdiff
path: root/docker/demo
diff options
context:
space:
mode:
authorMS <ms@taler.net>2022-11-14 19:58:34 +0100
committerMS <ms@taler.net>2022-11-14 19:58:34 +0100
commit6bdf6c4ed586bd9f774cde631df50066cc49ad46 (patch)
treecf9eb0861826afa0b97a8a1602491ec8ecc03877 /docker/demo
parent6f5261434d373d771aa77db9db8267cf73567f93 (diff)
downloaddeployment-6bdf6c4ed586bd9f774cde631df50066cc49ad46.tar.gz
deployment-6bdf6c4ed586bd9f774cde631df50066cc49ad46.tar.bz2
deployment-6bdf6c4ed586bd9f774cde631df50066cc49ad46.zip
match actual tag
Diffstat (limited to 'docker/demo')
-rw-r--r--docker/demo/images/base/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/demo/images/base/Dockerfile b/docker/demo/images/base/Dockerfile
index 1e3eea3..352084f 100644
--- a/docker/demo/images/base/Dockerfile
+++ b/docker/demo/images/base/Dockerfile
@@ -44,8 +44,8 @@ WORKDIR /exchange
# 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 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 . /tags.sh && test "${TAG_EXCHANGE:-}" = "v0.9.0" && git -C contrib/gana checkout 6b9824c # v0.9.0-compatible
+RUN . /tags.sh && test "${TAG_EXCHANGE:-}" = "v0.9.0" && git submodule set-uri contrib/gana .
RUN ./bootstrap
RUN ./configure CFLAGS="-ggdb -O0" --enable-logging=verbose --disable-doc
RUN make install