MIsskey-ebooks-bot/Dockerfile

14 lines
297 B
Docker
Raw Normal View History

2022-02-19 20:31:54 +00:00
FROM python:3-alpine
2022-01-19 06:42:40 +00:00
2022-02-19 20:52:39 +00:00
RUN apk add --no-cache py3-pip py3-setuptools py3-distutils-extra
2022-02-19 19:58:47 +00:00
2022-01-19 06:42:40 +00:00
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" ]