diff options
author | Andreas Fankhauser hiddenalpha.ch | 2022-10-20 19:24:54 +0200 |
---|---|---|
committer | Andreas Fankhauser hiddenalpha.ch | 2022-10-20 19:24:54 +0200 |
commit | e9b540780d60f58fbe162b80c85653d78ab1906a (patch) | |
tree | 854f25993b111113b3979972e8dcb08188354390 /contrib/build-using-docker/Dockerfile | |
parent | d39b470dd9d746c191814b813e15c87e80647ce1 (diff) | |
download | bulk-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/Dockerfile | 2 |
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 \ |