mirror of
https://github.com/scito/extract_otp_secret_keys.git
synced 2025-12-06 14:54:57 +01:00
12 lines
169 B
Text
12 lines
169 B
Text
|
|
FROM python:3.11-alpine
|
||
|
|
|
||
|
|
WORKDIR /extract
|
||
|
|
|
||
|
|
COPY . .
|
||
|
|
|
||
|
|
RUN pip install -r requirements.txt
|
||
|
|
|
||
|
|
WORKDIR /files
|
||
|
|
|
||
|
|
ENTRYPOINT [ "python", "/extract/extract_otp_secret_keys.py" ]
|