mirror of
https://github.com/scito/extract_otp_secrets.git
synced 2025-12-16 15:20:12 +01:00
apk add zlib-dev jpeg-dev only for alpine linux/arm64
This commit is contained in:
@@ -8,7 +8,7 @@ ARG run_tests=true
|
||||
|
||||
RUN apt-get update && apt-get install -y libzbar0 python3-opencv nano \
|
||||
&& pip install -r requirements.txt \
|
||||
&& if [[ "$run_tests" == "true" ]] ; then /extract/run_pytest.sh ; else echo "Not running tests..." ; fi
|
||||
&& if [[ "$run_tests" == "true" ]]; then /extract/run_pytest.sh; else echo "Not running tests..."; fi
|
||||
|
||||
WORKDIR /files
|
||||
|
||||
|
||||
@@ -5,10 +5,12 @@ WORKDIR /extract
|
||||
COPY . .
|
||||
|
||||
ARG run_tests=true
|
||||
ARG TARGETPLATFORM
|
||||
|
||||
RUN apk add zlib-dev nano \
|
||||
RUN apk add nano \
|
||||
&& if [[ "$TARGETPLATFORM" == "linux/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
|
||||
&& 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
|
||||
|
||||
WORKDIR /files
|
||||
|
||||
|
||||
Reference in New Issue
Block a user