Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -11,14 +11,14 @@ RUN mkdir -p /app/.cache
|
|
11 |
# Set the working directory in the container
|
12 |
WORKDIR /app
|
13 |
|
14 |
-
# Copy the requirements file into the container
|
15 |
-
COPY requirements.txt .
|
16 |
-
|
17 |
# Install system dependencies (required for soundfile and other libraries)
|
18 |
RUN apt-get update && apt-get install -y \
|
19 |
libsndfile1 \
|
20 |
&& rm -rf /var/lib/apt/lists/*
|
21 |
|
|
|
|
|
|
|
22 |
# Install Python dependencies
|
23 |
RUN pip install --no-cache-dir -r requirements.txt
|
24 |
|
|
|
11 |
# Set the working directory in the container
|
12 |
WORKDIR /app
|
13 |
|
|
|
|
|
|
|
14 |
# Install system dependencies (required for soundfile and other libraries)
|
15 |
RUN apt-get update && apt-get install -y \
|
16 |
libsndfile1 \
|
17 |
&& rm -rf /var/lib/apt/lists/*
|
18 |
|
19 |
+
# Copy the requirements file into the container
|
20 |
+
COPY requirements.txt .
|
21 |
+
|
22 |
# Install Python dependencies
|
23 |
RUN pip install --no-cache-dir -r requirements.txt
|
24 |
|