Adds Dockerfile and updates README.md

This commit is contained in:
anon-dev 2023-12-12 20:02:57 +01:00
parent bec2f582c2
commit a4c45e7727
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

@ -27,6 +27,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.