lucy1118 commited on
Commit
011f622
1 Parent(s): 6043de8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -1,9 +1,8 @@
1
  FROM python:3.10.11-slim
2
  WORKDIR $HOME/app
3
- COPY requirements.txt $HOME/app
4
- RUN mkdir /.cache && chmod 777 /.cache
5
- RUN pip install -r requirements.txt
6
  COPY . $HOME/app
 
 
7
  EXPOSE 7860
8
  RUN python kitt.py download-files
9
  CMD python kitt.py start
 
1
  FROM python:3.10.11-slim
2
  WORKDIR $HOME/app
 
 
 
3
  COPY . $HOME/app
4
+ RUN mkdir /.cache && chmod 777 /.cache
5
+ RUN pip install ./livekit-plugins-silero && pip install -r requirements.txt
6
  EXPOSE 7860
7
  RUN python kitt.py download-files
8
  CMD python kitt.py start