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 edacc90333
增加Dockerfile (#720)
* Add files via upload

* Update Dockerfile

* feat(dockerfile): add more metadata

See also https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys

---------

Co-authored-by: xtex <xtexchooser@duck.com>
2023-07-26 13:39:07 +08:00

15 lines
553 B
Docker

FROM python:3.10
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
CMD ["python", "./bot.py"]