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

16 lines
563 B
Docker
Raw Permalink Normal View History

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"]