Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -18,5 +18,8 @@ RUN pip install -U -r /discordbot/requirements.txt
|
|
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"]
|
|
|
18 |
COPY ./discord_bot.py /discordbot/discord_bot.py
|
19 |
COPY ./pingpong.py /discordbot/pingpong.py
|
20 |
COPY ./server.py /discordbot/server.py
|
21 |
+
COPY ./index.html /discordbot/templates/index.html
|
22 |
+
COPY ./client.js /discordbot/static/client.js
|
23 |
+
COPY ./style.css /discordbot/static/style.css
|
24 |
|
25 |
CMD ["python", "/discordbot/server.py"]
|