Async rate limit sleeps

This commit is contained in:
Benjamin Morgan 2026-01-10 15:58:50 -07:00
parent 065d887a9f
commit 855e4c305e
3 changed files with 158 additions and 35 deletions

View file

@ -5,10 +5,10 @@ WORKDIR /app
COPY docker-entrypoint.sh ./entrypoint.sh
COPY requirements.txt .
COPY schema.sql .
COPY mstbot.py .
ADD src src
RUN apt update && apt install sqlite3
RUN apt update && apt upgrade -y && apt install -y sqlite3
RUN pip install --upgrade pip && pip install -r requirements.txt
ENTRYPOINT [ "/app/entrypoint.sh" ]
CMD [ "python3", "-u", "mstbot.py" ]
CMD [ "python3", "-u", "src/mstbot.py" ]