Initial discord bot

This commit is contained in:
The0Mikkel
2024-05-27 22:32:11 +02:00
parent c9c155ca63
commit add98c0202
7 changed files with 1100 additions and 0 deletions

11
bot/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.11.6-alpine
RUN apk add --no-cache build-base libffi-dev
RUN pip install poetry
WORKDIR /mnt
COPY pyproject.toml poetry.lock .
RUN poetry install --no-root --only main
COPY . .
ENTRYPOINT ["poetry", "run", "python", "discollama.py"]