mirror of
https://github.com/scito/extract_otp_secret_keys.git
synced 2026-01-05 12:55:41 +01:00
12 lines
268 B
Text
12 lines
268 B
Text
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"]
|