Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
haccer committed Mar 2, 2021
1 parent 4b30fa3 commit e7c8a0c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM python:3.6-buster
LABEL maintainer="[email protected]"

WORKDIR /root

RUN git clone --depth=1 https://github.com/twintproject/twint.git && \
cd /root/twint && \
pip3 install . -r requirements.txt

CMD /bin/bash
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ pip3 install --user --upgrade git+https://github.com/twintproject/twint.git@orig
pipenv install git+https://github.com/twintproject/twint.git#egg=twint
```

### March 2, 2021 Update

**Added**: Dockerfile

Noticed a lot of people are having issues installing (including me). Please use the Dockerfile temporarily while I look into them.

## CLI Basic Examples and Combos
A few simple examples to help you understand the basics:

Expand Down

0 comments on commit e7c8a0c

Please sign in to comment.