extract_otp_secret_keys/Dockerfile
scito 672d18a5ca build docker images, run tests in docker build
- qreader_available flag
- echo commands in upgrade_deps.sh
2022-12-26 23:57:38 +01:00

13 lines
281 B
Docker

FROM python:3.11-slim-bullseye
WORKDIR /extract
COPY . .
RUN apt-get update && apt-get install -y libzbar0 python3-opencv nano \
&& pip install -r requirements.txt \
&& /extract/run_pytest.sh
WORKDIR /files
ENTRYPOINT ["python", "/extract/extract_otp_secret_keys.py"]