mojad121 commited on
Commit
a8c3937
·
verified ·
1 Parent(s): 16d93a1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -4,10 +4,10 @@ WORKDIR /app
4
 
5
  RUN apt-get update && apt-get install -y \
6
  build-essential \
7
- curl \
8
- git \
9
  ffmpeg \
10
  libsndfile1 \
 
 
11
  && rm -rf /var/lib/apt/lists/*
12
 
13
  RUN mkdir -p /app/.cache && chmod -R 777 /app/.cache
@@ -23,4 +23,4 @@ RUN pip install --no-cache-dir -r requirements.txt
23
 
24
  EXPOSE 8501
25
 
26
- ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]
 
4
 
5
  RUN apt-get update && apt-get install -y \
6
  build-essential \
 
 
7
  ffmpeg \
8
  libsndfile1 \
9
+ libasound2-dev \
10
+ portaudio19-dev \
11
  && rm -rf /var/lib/apt/lists/*
12
 
13
  RUN mkdir -p /app/.cache && chmod -R 777 /app/.cache
 
23
 
24
  EXPOSE 8501
25
 
26
+ ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]