luxmorocco commited on
Commit
e26a885
·
verified ·
1 Parent(s): a9c559b

Update Docker

Browse files
Files changed (1) hide show
  1. Docker +2 -3
Docker CHANGED
@@ -11,6 +11,8 @@ RUN apt-get update && apt-get install -y \
11
  ffmpeg \
12
  curl \
13
  git \
 
 
14
  && rm -rf /var/lib/apt/lists/*
15
 
16
  # Install Node.js
@@ -27,9 +29,6 @@ COPY requirements.txt .
27
  # Install any needed packages specified in requirements.txt
28
  RUN pip install --no-cache-dir -r requirements.txt
29
 
30
- # Install py-zerox separately to avoid conflicts
31
- RUN pip install --no-cache-dir git+https://github.com/getomni-ai/zerox.git
32
-
33
  # Copy the rest of your application's code
34
  COPY . .
35
 
 
11
  ffmpeg \
12
  curl \
13
  git \
14
+ libsentencepiece-dev \
15
+ pkg-config \
16
  && rm -rf /var/lib/apt/lists/*
17
 
18
  # Install Node.js
 
29
  # Install any needed packages specified in requirements.txt
30
  RUN pip install --no-cache-dir -r requirements.txt
31
 
 
 
 
32
  # Copy the rest of your application's code
33
  COPY . .
34