Spaces:
Sleeping
Sleeping
Pavanupadhyay27 commited on
Commit ·
fe6c464
1
Parent(s): 4280ecb
Fix: Replace deprecated libgl1-mesa-glx with libgl1 for Ubuntu 24.04 compatibility
Browse files- .github/workflows/ci.yml +1 -1
- Dockerfile +1 -1
- backend/Dockerfile +1 -1
.github/workflows/ci.yml
CHANGED
|
@@ -21,7 +21,7 @@ jobs:
|
|
| 21 |
- name: Install System Dependencies
|
| 22 |
run: |
|
| 23 |
sudo apt-get update
|
| 24 |
-
sudo apt-get install -y libgl1
|
| 25 |
|
| 26 |
- name: Install Python Dependencies
|
| 27 |
run: |
|
|
|
|
| 21 |
- name: Install System Dependencies
|
| 22 |
run: |
|
| 23 |
sudo apt-get update
|
| 24 |
+
sudo apt-get install -y libgl1 libglib2.0-0 espeak
|
| 25 |
|
| 26 |
- name: Install Python Dependencies
|
| 27 |
run: |
|
Dockerfile
CHANGED
|
@@ -3,7 +3,7 @@ FROM python:3.12-slim
|
|
| 3 |
# Install system dependencies for OpenCV and pyttsx3/espeak
|
| 4 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 5 |
build-essential \
|
| 6 |
-
libgl1
|
| 7 |
libglib2.0-0 \
|
| 8 |
espeak \
|
| 9 |
alsa-utils \
|
|
|
|
| 3 |
# Install system dependencies for OpenCV and pyttsx3/espeak
|
| 4 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 5 |
build-essential \
|
| 6 |
+
libgl1 \
|
| 7 |
libglib2.0-0 \
|
| 8 |
espeak \
|
| 9 |
alsa-utils \
|
backend/Dockerfile
CHANGED
|
@@ -3,7 +3,7 @@ FROM python:3.12-slim
|
|
| 3 |
# Install system dependencies for OpenCV and pyttsx3/espeak
|
| 4 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 5 |
build-essential \
|
| 6 |
-
libgl1
|
| 7 |
libglib2.0-0 \
|
| 8 |
espeak \
|
| 9 |
alsa-utils \
|
|
|
|
| 3 |
# Install system dependencies for OpenCV and pyttsx3/espeak
|
| 4 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 5 |
build-essential \
|
| 6 |
+
libgl1 \
|
| 7 |
libglib2.0-0 \
|
| 8 |
espeak \
|
| 9 |
alsa-utils \
|