change to "$TARGETARCH" == "arm64"

This commit is contained in:
scito
2022-12-29 00:02:14 +01:00
parent b05decc10f
commit d4f5eb243e

View File

@@ -8,7 +8,7 @@ ARG run_tests=true
ARG TARGETPLATFORM
RUN apk add nano \
&& if [[ "$TARGETPLATFORM" == "linux/arm64" ]]; then apk add zlib-dev jpeg-dev; fi \
&& if [[ "$TARGETARCH" == "arm64" ]]; then apk add zlib-dev jpeg-dev; fi \
&& pip install protobuf qrcode Pillow \
&& if [[ "$run_tests" == "true" ]]; then /extract/run_pytest.sh test_extract_otp_secret_keys_pytest.py -k "not qreader" --relaxed; else echo "Not running tests..."; fi