lemonteaa commited on
Commit
8aa87fa
1 Parent(s): e7f1484

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -9,6 +9,7 @@ RUN apt-get update && apt-get install -y git
9
  RUN git clone https://github.com/rupeshs/fastsdcpu
10
 
11
  WORKDIR /code/fastsdcpu
12
- RUN chmod a+x install.sh && chmod a+x start-webui.sh && /code/fastsdcpu/install.sh
 
13
 
14
  CMD ["./start-webui.sh"]
 
9
  RUN git clone https://github.com/rupeshs/fastsdcpu
10
 
11
  WORKDIR /code/fastsdcpu
12
+ RUN chmod a+x install.sh && chmod a+x start-webui.sh
13
+ RUN /code/fastsdcpu/install.sh || { exit 0; }
14
 
15
  CMD ["./start-webui.sh"]