extract_otp_secret_keys/Dockerfile
Ilya Kaznacheev d08195507e
Add docker as installation option (#23)
* Add docker as installation option

* Add newline to Dockerfile

* Fix example typo

* Add code review fixes
2022-11-19 09:18:24 +01:00

12 lines
169 B
Docker

FROM python:3.11-alpine
WORKDIR /extract
COPY . .
RUN pip install -r requirements.txt
WORKDIR /files
ENTRYPOINT [ "python", "/extract/extract_otp_secret_keys.py" ]