GFiaMon commited on
Commit
2b5fd52
·
1 Parent(s): f288efc

debug transcription 2

Browse files
Files changed (2) hide show
  1. Dockerfile +2 -2
  2. src/ui/gradio_app.py +1 -1
Dockerfile CHANGED
@@ -33,8 +33,8 @@ RUN pip install --upgrade pip
33
  RUN pip install --no-cache-dir -r requirements.txt
34
 
35
  # Fix for "cannot enable executable stack" error on HF Spaces
36
- # Find all libctranslate2 shared objects and clear the executable stack flag
37
- RUN find /usr/local/lib/python3.11/site-packages/ctranslate2 -name '*.so' -exec patchelf --clear-execstack {} \;
38
 
39
  # Copy the rest of the application
40
  COPY . .
 
33
  RUN pip install --no-cache-dir -r requirements.txt
34
 
35
  # Fix for "cannot enable executable stack" error on HF Spaces
36
+ # Find all libctranslate2 shared objects (including in .libs dirs) and clear the executable stack flag
37
+ RUN find /usr/local/lib/python3.11/site-packages -name 'libctranslate2*.so*' -exec patchelf --clear-execstack {} \;
38
 
39
  # Copy the rest of the application
40
  COPY . .
src/ui/gradio_app.py CHANGED
@@ -454,7 +454,7 @@ The agent will acknowledge your upload and help you analyze the meeting.
454
 
455
  # Custom Chatbot with responsive height
456
  custom_chatbot = gr.Chatbot(
457
- height="65vh",
458
  show_label=False
459
  )
460
 
 
454
 
455
  # Custom Chatbot with responsive height
456
  custom_chatbot = gr.Chatbot(
457
+ height="600",
458
  show_label=False
459
  )
460