Update Dockerfile
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
|
@@ -17,8 +17,11 @@ WORKDIR /app
|
|
| 17 |
# Copy all project files into the container
|
| 18 |
COPY . /app
|
| 19 |
|
| 20 |
-
#
|
| 21 |
-
RUN
|
|
|
|
|
|
|
|
|
|
| 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
|