Spaces:
Running
Running
Create Dockerfile
Browse files- Dockerfile +14 -0
Dockerfile
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04
|
2 |
+
|
3 |
+
WORKDIR /discordbot
|
4 |
+
|
5 |
+
RUN apt-get update
|
6 |
+
RUN apt-get install python3.10 -y
|
7 |
+
RUN apt-get install python-is-python3 -y
|
8 |
+
RUN apt-get install pip -y
|
9 |
+
RUN apt-get install git -y
|
10 |
+
RUN apt-get install curl -y
|
11 |
+
RUN apt-get install wget -y
|
12 |
+
RUN apt-get install ffmpeg -y
|
13 |
+
|
14 |
+
RUN pip install python-dotenv typing-extensions
|