- organize imports - add qreader pytest.mark - relaxed mode for pytest - run tests in docker - more tests
13 lines
246 B
Docker
13 lines
246 B
Docker
FROM python:3.11-slim-bullseye
|
|
|
|
WORKDIR /extract
|
|
|
|
COPY . .
|
|
|
|
RUN apt-get update && apt-get install -y libzbar0 python3-opencv \
|
|
&& pip install -r requirements.txt
|
|
|
|
WORKDIR /files
|
|
|
|
ENTRYPOINT [ "python", "/extract/extract_otp_secret_keys.py" ]
|