Merge pull request #186 from anon-dev-gh/add-dockerfile

Adds Dockerfile and updates README.md
This commit is contained in:
Palenath 2023-12-29 17:44:47 +01:00 committed by GitHub
commit bdacc5ee76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

4
Dockerfile Normal file
View File

@ -0,0 +1,4 @@
FROM python:3.11-slim-bullseye
COPY . /opt/holehe
WORKDIR /opt/holehe
RUN python3 setup.py install

View File

@ -32,6 +32,13 @@ cd holehe/
python3 setup.py install
```
### With Docker
```bash
docker build . -t my-holehe-image
docker run my-holehe-image holehe test@gmail.com
```
## Quick Start
Holehe can be run from the CLI and rapidly embedded within existing python applications.