Add docker as installation option (#23)

* Add docker as installation option

* Add newline to Dockerfile

* Fix example typo

* Add code review fixes
This commit is contained in:
Ilya Kaznacheev 2022-11-19 12:18:24 +04:00 committed by GitHub
parent a95a0d1325
commit d08195507e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

11
Dockerfile Normal file
View file

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