mirror of
https://github.com/fotoente/MIsskey-ebooks-bot
synced 2024-11-29 06:40:44 +00:00
11 lines
223 B
Docker
11 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" ]
|