sksameermujahid commited on
Commit
229449b
·
verified ·
1 Parent(s): 5a641ac

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -4
Dockerfile CHANGED
@@ -2,22 +2,31 @@ FROM python:3.11-slim
2
 
3
  WORKDIR /code
4
 
5
- # Install system dependencies including gcc and build tools
6
  RUN apt-get update && apt-get install -y \
7
  gcc \
8
  g++ \
9
  make \
10
  git \
 
 
 
 
 
11
  && rm -rf /var/lib/apt/lists/*
12
 
 
13
  COPY ./requirements.txt /code/requirements.txt
 
 
 
 
 
 
14
  COPY ./app.py /code/app.py
15
  COPY ./templates /code/templates
16
  COPY ./models /code/models
17
 
18
- # Install Python packages
19
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
20
-
21
  EXPOSE 7860
22
 
23
  CMD ["python", "app.py"]
 
2
 
3
  WORKDIR /code
4
 
5
+ # Install system dependencies
6
  RUN apt-get update && apt-get install -y \
7
  gcc \
8
  g++ \
9
  make \
10
  git \
11
+ ffmpeg \
12
+ libsndfile1 \
13
+ portaudio19-dev \
14
+ python3-dev \
15
+ build-essential \
16
  && rm -rf /var/lib/apt/lists/*
17
 
18
+ # Copy requirements first to leverage Docker cache
19
  COPY ./requirements.txt /code/requirements.txt
20
+
21
+ # Install Python packages
22
+ RUN pip install --no-cache-dir --upgrade pip && \
23
+ pip install --no-cache-dir --upgrade -r /code/requirements.txt
24
+
25
+ # Copy the rest of the application
26
  COPY ./app.py /code/app.py
27
  COPY ./templates /code/templates
28
  COPY ./models /code/models
29
 
 
 
 
30
  EXPOSE 7860
31
 
32
  CMD ["python", "app.py"]