From 940c725e298a9aae94d0cecd764d110dfb4348a6 Mon Sep 17 00:00:00 2001 From: "black.box (Unzoner) team@belodetek.io" Date: Sat, 2 Dec 2023 18:30:02 -0800 Subject: [PATCH] clone tag --- unzoner/Dockerfile.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unzoner/Dockerfile.template b/unzoner/Dockerfile.template index c71497e..a3ea3a0 100644 --- a/unzoner/Dockerfile.template +++ b/unzoner/Dockerfile.template @@ -46,7 +46,7 @@ WORKDIR /data RUN useradd openssl && (passwd -d openssl || true) RUN if [ "$BUILD_OPENSSL" = '1' ]; then \ - set -x; git clone --single-branch --branch openssl-$BUILD_OPENSSL_VERSION https://github.com/openssl/openssl \ + set -x; git clone --depth 1 --branch openssl-$BUILD_OPENSSL_VERSION https://github.com/openssl/openssl \ && cd openssl \ && chown -hR openssl:openssl . \ && if [ '%%BALENA_ARCH%%' = 'armv7hf' ]; then ./config --prefix=/usr/local/ssl shared threads no-async $ARM_OPTIMISE_FLAGS; \