cigol123 commited on
Commit
ca24438
·
verified ·
1 Parent(s): afe0399

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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