mirror of
https://github.com/BluemediaDev/discord-cleanup-bot.git
synced 2025-05-06 09:51:37 +02:00
Initial commit of code
This commit is contained in:
parent
432bc5a95d
commit
296db66e28
5 changed files with 173 additions and 0 deletions
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
FROM python:3.11
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
COPY requirements.txt ./
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY . .
|
||||
|
||||
VOLUME ["/data"]
|
||||
ENV DB_PATH="/data/bot.db"
|
||||
|
||||
CMD [ "python", "./bot.py" ]
|
Loading…
Add table
Add a link
Reference in a new issue