There was an error while loading. Please reload this page.
1 parent 18ce887 commit ae3eb0fCopy full SHA for ae3eb0f
Dockerfile
@@ -0,0 +1,15 @@
1
+FROM python:3.10
2
+
3
+EXPOSE 8501
4
+COPY . .
5
+RUN apt-get update
6
+RUN apt-get install ffmpeg libsm6 libxext6 -y
7
+RUN apt-get update && apt-get install -y libglib2.0-0 libsm6 libxrender1 libxext6 -y
8
+RUN pip install -r requirements.txt
9
+RUN pip install --upgrade requests
10
11
+CMD git clone --recursive https://github.com/parlance/ctcdecode.git
12
+CMD cd ctcdecode && pip install . && cd ..
13
14
+CMD bash setup.sh
15
+CMD streamlit run deployment/app.py
demo/app.py
setup.sh
0 commit comments