Async rate limit sleeps
This commit is contained in:
parent
065d887a9f
commit
855e4c305e
3 changed files with 158 additions and 35 deletions
|
|
@ -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" ]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue