Spaces:
Running
Running
Update Dockerfile
Browse files- 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"]
|