summaryrefslogtreecommitdiff
path: root/contrib/build-using-docker/Dockerfile
diff options
context:
space:
mode:
authorAndreas Fankhauser hiddenalpha.ch2022-10-20 19:24:54 +0200
committerAndreas Fankhauser hiddenalpha.ch2022-10-20 19:24:54 +0200
commite9b540780d60f58fbe162b80c85653d78ab1906a (patch)
tree854f25993b111113b3979972e8dcb08188354390 /contrib/build-using-docker/Dockerfile
parentd39b470dd9d746c191814b813e15c87e80647ce1 (diff)
downloadbulk-ln-e9b540780d60f58fbe162b80c85653d78ab1906a.zip
bulk-ln-e9b540780d60f58fbe162b80c85653d78ab1906a.tar.gz
Enhance docker-build doc for debian
- Older OS release for better portability - Add hint about musl libc - Use apt-get over apt cmd to fix api warnings
Diffstat (limited to 'contrib/build-using-docker/Dockerfile')
-rw-r--r--contrib/build-using-docker/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/build-using-docker/Dockerfile b/contrib/build-using-docker/Dockerfile
index 00c1132..47b14f5 100644
--- a/contrib/build-using-docker/Dockerfile
+++ b/contrib/build-using-docker/Dockerfile
@@ -18,7 +18,7 @@ RUN true \
&& $PKGADD $PKGS_TO_ADD \
&& git clone --depth 42 --branch "${GIT_TAG:?}" https://github.com/hiddenalpha/bulk-ln.git . \
&& git config advice.detachedHead false \
- && if test -n "$GIT_TAG"; then git checkout "$GIT_TAG"; fi \
+ && git checkout "$GIT_TAG" \
&& ./configure $CONFIGURE_OPTS \
&& make clean && make && make install \
&& find . -not -wholename './dist*' -delete \