Created
September 26, 2018 11:01
-
-
Save polleyg/692fd03d57163c565125867a946311c9 to your computer and use it in GitHub Desktop.
Docker for Twitter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:2 | |
RUN pip install --upgrade pip | |
RUN pip install tweepy | |
RUN pip install --upgrade google-api-python-client | |
RUN pip install --upgrade oauth2client | |
RUN pip install python-dateutil | |
ADD twitter-to-pubsub.py /twitter-to-pubsub.py | |
ADD utils.py /utils.py | |
CMD python twitter-to-pubsub.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment