Spaces:
Runtime error
Runtime error
Streamlit to requirements.txt
Browse filesSigned-off-by: Unai Garay <[email protected]>
- Dockerfile +0 -1
- requirements.txt +1 -0
Dockerfile
CHANGED
@@ -7,7 +7,6 @@ COPY ./packages.txt /app/packages.txt
|
|
7 |
|
8 |
RUN apt-get update && xargs -r -a /app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
|
9 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
10 |
-
RUN pip3 install --no-cache-dir streamlit==1.10.0
|
11 |
|
12 |
# User
|
13 |
RUN useradd -m -u 1000 user
|
|
|
7 |
|
8 |
RUN apt-get update && xargs -r -a /app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
|
9 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
|
|
10 |
|
11 |
# User
|
12 |
RUN useradd -m -u 1000 user
|
requirements.txt
CHANGED
@@ -10,4 +10,5 @@ soundfile==0.10.3.post1
|
|
10 |
espnet
|
11 |
pydub==0.25.1
|
12 |
espnet_model_zoo==0.1.7
|
|
|
13 |
git+https://github.com/openai/whisper.git
|
|
|
10 |
espnet
|
11 |
pydub==0.25.1
|
12 |
espnet_model_zoo==0.1.7
|
13 |
+
streamlit==1.10.0
|
14 |
git+https://github.com/openai/whisper.git
|