mirror of
https://github.com/scito/extract_otp_secrets.git
synced 2025-12-12 09:49:46 +01:00
* Add docker as installation option * Add newline to Dockerfile * Fix example typo * Add code review fixes
12 lines
169 B
Docker
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" ]
|