Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -4,8 +4,8 @@ FROM python:3.9
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /code
|
6 |
|
7 |
-
#
|
8 |
-
RUN
|
9 |
|
10 |
# Copy the requirements file into the container at /code
|
11 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /code
|
6 |
|
7 |
+
# Installation of portaudio19-dev
|
8 |
+
RUN apt-get update && apt-get install -y portaudio19-dev
|
9 |
|
10 |
# Copy the requirements file into the container at /code
|
11 |
COPY ./requirements.txt /code/requirements.txt
|