lemonteaa commited on
Commit
a032573
1 Parent(s): c9017ac

Create Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]