Zasha1 commited on
Commit
582e1d3
·
verified ·
1 Parent(s): 9cb973e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -17,8 +17,11 @@ WORKDIR /app
17
  # Copy all project files into the container
18
  COPY . /app
19
 
20
- # Install Python dependencies with verbose output
21
- RUN pip install --no-cache-dir -v sounddevice
 
 
 
22
 
23
  # Expose the Streamlit default port
24
  EXPOSE 8501
 
17
  # Copy all project files into the container
18
  COPY . /app
19
 
20
+ # Verify PortAudio installation
21
+ RUN ldconfig -p | grep portaudio
22
+
23
+ # Install Python dependencies
24
+ RUN pip install --no-cache-dir sounddevice
25
 
26
  # Expose the Streamlit default port
27
  EXPOSE 8501