Create Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from python:3.11
|
| 2 |
+
run git clone https://github.com/rupeshs/fastsdcpu
|
| 3 |
+
workdir fastsdcpu
|
| 4 |
+
run chmod +x install.sh
|
| 5 |
+
run ./install.sh
|
| 6 |
+
run python ../dl.py
|
| 7 |
+
run python ../cfg.py
|
| 8 |
+
run ./start-webui.sh
|