extract_otp_secret_keys/Dockerfile_no_qr_reader
scito 0490e227e1 docker image with qreader, 2nd image without qreader
- organize imports
- add qreader pytest.mark
- relaxed mode for pytest
- run tests in docker
- more tests
2022-12-26 18:31:09 +01:00

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" ]