Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/Dockerfile
9Bakabaka 533b592e9c
Update Dockerfile (#795)
远程仓库依赖有些问题,临时加个--no-deps防止构建出错
2023-08-08 21:16:43 +08:00

16 lines
563 B
Docker

FROM python:3.11
LABEL org.opencontainers.image.url https://github.com/Teahouse-Studios/akari-bot
LABEL org.opencontainers.image.documentation https://bot.teahouse.team/
LABEL org.opencontainers.image.source https://github.com/Teahouse-Studios/akari-bot
LABEL org.opencontainers.image.vendor Teahouse Studios
LABEL org.opencontainers.image.licenses AGPL-3.0-or-later
LABEL org.opencontainers.image.title akari-bot
MAINTAINER Teahouse Studios <admin@teahou.se>
WORKDIR /akari-bot
ADD . .
RUN pip install -r requirements.txt --no-deps
CMD ["python", "./bot.py"]