mirror of
https://github.com/fotoente/MIsskey-ebooks-bot
synced 2024-11-10 05:44:14 +00:00
12 lines
223 B
Docker
12 lines
223 B
Docker
|
FROM python:3
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY requirements.txt ./
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
RUN pip install git+https://github.com/yupix/Mi.py.git@v3.3.0
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
CMD [ "python", "-u", "./rdbot.py" ]
|