Skip to content

Commit e7c8a0c

Browse files
committed
Add Dockerfile
1 parent 4b30fa3 commit e7c8a0c

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM python:3.6-buster
2+
LABEL maintainer="codyzacharias@pm.me"
3+
4+
WORKDIR /root
5+
6+
RUN git clone --depth=1 https://github.com/twintproject/twint.git && \
7+
cd /root/twint && \
8+
pip3 install . -r requirements.txt
9+
10+
CMD /bin/bash

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ pip3 install --user --upgrade git+https://github.com/twintproject/twint.git@orig
6363
pipenv install git+https://github.com/twintproject/twint.git#egg=twint
6464
```
6565

66+
### March 2, 2021 Update
67+
68+
**Added**: Dockerfile
69+
70+
Noticed a lot of people are having issues installing (including me). Please use the Dockerfile temporarily while I look into them.
71+
6672
## CLI Basic Examples and Combos
6773
A few simple examples to help you understand the basics:
6874

0 commit comments

Comments
 (0)