mirror of
https://github.com/fotoente/MIsskey-ebooks-bot
synced 2024-11-25 12:50:20 +00:00
14 lines
295 B
Docker
14 lines
295 B
Docker
FROM python:3
|
|
|
|
RUN apt-get update && apt-get -y upgrade
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --upgrade pip
|
|
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" ]
|