MIsskey-ebooks-bot/Dockerfile
2022-02-19 15:31:54 -05:00

13 lines
277 B
Docker

FROM python:3-alpine
RUN apk add --no-cache py3-pip py3-setuptools
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" ]