Posthorn/Dockerfile

11 lines
No EOL
180 B
Docker

FROM python:3
RUN mkdir /source
COPY ./bot.py ./github_connector.py ./requirements.txt /source/
WORKDIR /source
RUN pip install -r requirements.txt
CMD [ "python3", "bot.py" ]