renator commited on
Commit
1c165aa
·
1 Parent(s): cab85eb
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -26,6 +26,9 @@ COPY . /app/
26
  # Set the environment variable for Coqui TTS
27
  ENV COQUI_TOS_AGREED=1
28
 
 
 
 
29
  # Install numba and llvmlite
30
  RUN pip install numba==0.48 llvmlite
31
 
 
26
  # Set the environment variable for Coqui TTS
27
  ENV COQUI_TOS_AGREED=1
28
 
29
+ # Install necessary build tools and libraries
30
+ RUN apt-get install -y build-essential llvm llvm-dev
31
+
32
  # Install numba and llvmlite
33
  RUN pip install numba==0.48 llvmlite
34