Turing311 commited on
Commit
47687ed
1 Parent(s): 2a0d1ab

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -9,6 +9,9 @@ COPY ./app.py .
9
  COPY ./requirements.txt .
10
  COPY ./data ./data
11
  COPY ./gradio ./gradio
 
12
  RUN pip3 install -r requirements.txt
13
- CMD [ "python3", "gradio/demo.py"]
 
 
14
  EXPOSE 8080
 
9
  COPY ./requirements.txt .
10
  COPY ./data ./data
11
  COPY ./gradio ./gradio
12
+ COPY ./run.sh .
13
  RUN pip3 install -r requirements.txt
14
+ // CMD [ "python3", "gradio/demo.py"]
15
+ RUN chmod +x run.sh
16
+ CMD ["run.sh"]
17
  EXPOSE 8080