mirror of
https://github.com/runyanjake/discord.git
synced 2025-10-04 23:27:29 -07:00
12 lines
123 B
Docker
12 lines
123 B
Docker
FROM python:3.11
|
|
|
|
WORKDIR /discord
|
|
|
|
COPY ./ /discord
|
|
|
|
EXPOSE 3000
|
|
|
|
WORKDIR /discord
|
|
|
|
CMD [ "python", "bot.py" ]
|