liuyuqi-dellpc 11 months ago
parent
commit
770eeff0ca
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Dockerfile

+ 4 - 0
Dockerfile

@@ -9,6 +9,10 @@ ENV PYTHONDONTWRITEBYTECODE=1
 # Turns off buffering for easier container logging
 # Turns off buffering for easier container logging
 ENV PYTHONUNBUFFERED=1
 ENV PYTHONUNBUFFERED=1
 RUN pip install poetry
 RUN pip install poetry
+
+RUN apt update && \
+    apt install libgl1-mesa-glx ffmpeg libsm6 libxext6 -y
+
 # Install pip requirements
 # Install pip requirements
 COPY requirements.txt .
 COPY requirements.txt .
 RUN python -m pip install -r requirements.txt
 RUN python -m pip install -r requirements.txt