mirror of
https://github.com/scito/extract_otp_secret_keys
synced 2024-11-18 09:28:19 +00:00
672d18a5ca
- qreader_available flag - echo commands in upgrade_deps.sh
13 lines
268 B
Plaintext
13 lines
268 B
Plaintext
FROM python:3.11-alpine
|
|
|
|
WORKDIR /extract
|
|
|
|
COPY . .
|
|
|
|
RUN pip install protobuf qrcode Pillow \
|
|
&& /extract/run_pytest.sh test_extract_otp_secret_keys_pytest.py -k "not qreader" --relaxed
|
|
|
|
WORKDIR /files
|
|
|
|
ENTRYPOINT ["python", "/extract/extract_otp_secret_keys.py"]
|