mirror of
https://github.com/BluemediaGER/discord-cleanup-bot.git
synced 2024-11-12 20:45:29 +01:00
13 lines
200 B
Docker
13 lines
200 B
Docker
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" ] |