mirror of
https://github.com/scito/extract_otp_secret_keys
synced 2024-11-04 12:00:14 +00:00
0490e227e1
- organize imports - add qreader pytest.mark - relaxed mode for pytest - run tests in docker - more tests
12 lines
172 B
Plaintext
12 lines
172 B
Plaintext
FROM python:3.11-alpine
|
|
|
|
WORKDIR /extract
|
|
|
|
COPY . .
|
|
|
|
RUN pip install protobuf qrcode Pillow
|
|
|
|
WORKDIR /files
|
|
|
|
ENTRYPOINT [ "python", "/extract/extract_otp_secret_keys.py" ]
|