mirror of
https://github.com/runyanjake/discord.git
synced 2025-10-04 15:27:28 -07:00
12 lines
207 B
Docker
12 lines
207 B
Docker
FROM python:3.11
|
|
|
|
WORKDIR /app
|
|
|
|
COPY bot.py requirements.txt ./
|
|
COPY resource/ ./resource
|
|
COPY commands/ ./commands
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
CMD [ "python", "bot.py" ]
|