13 lines
No EOL
256 B
Docker
13 lines
No EOL
256 B
Docker
FROM python:3
|
|
|
|
RUN mkdir /source
|
|
|
|
COPY ./bot.py ./github_connector.py ./README.md ./requirements.txt ./.example.env ./initSubmodules.sh /source/
|
|
|
|
WORKDIR /source/
|
|
|
|
RUN bash initSubmodules.sh
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD [ "python3", "bot.py" ] |