joytou commited on
Commit
7073b9f
·
verified ·
1 Parent(s): 9cf96c4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -1
Dockerfile CHANGED
@@ -13,4 +13,10 @@ RUN apt-get install ffmpeg -y
13
 
14
  COPY ./requirements.txt /discordbot/requirements.txt
15
  RUN pip install python-dotenv typing-extensions
16
- RUN pip install -U -r /discordbot/requirements.txt
 
 
 
 
 
 
 
13
 
14
  COPY ./requirements.txt /discordbot/requirements.txt
15
  RUN pip install python-dotenv typing-extensions
16
+ RUN pip install -U -r /discordbot/requirements.txt
17
+
18
+ COPY ./discord_bot.py /discordbot/discord_bot.py
19
+ COPY ./pingpong.py /discordbot/pingpong.py
20
+ COPY ./server.py /discordbot/server.py
21
+
22
+ CMD ["python", "/discordbot/server.py"]