github_searcher/Dockerfile
2024-08-26 11:16:40 -05:00

8 lines
No EOL
112 B
Docker

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