Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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
|