Spaces:
Sleeping
Sleeping
Create Dockerfile
Browse files- Dockerfile +11 -0
Dockerfile
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3
|
2 |
+
|
3 |
+
WORKDIR /code
|
4 |
+
|
5 |
+
RUN apt-get update && apt-get install -y git
|
6 |
+
RUN git clone https://github.com/rupeshs/fastsdcpu
|
7 |
+
|
8 |
+
WORKDIR /code/fastsdcpu
|
9 |
+
RUN ./install.sh
|
10 |
+
|
11 |
+
CMD ["./start-webui.sh"]
|