8 lines
No EOL
112 B
Docker
8 lines
No EOL
112 B
Docker
FROM python:3
|
|
|
|
RUN pip install PyGithub
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY . .
|
|
|
|
CMD [ "python", "./github_searcher.py" ] |