github_searcher/Dockerfile

8 lines
112 B
Text
Raw Normal View History

FROM python:3
RUN pip install PyGithub
WORKDIR /usr/src/app
COPY . .
CMD [ "python", "./github_searcher.py" ]