DevWild commited on
Commit
b4254ca
·
verified ·
1 Parent(s): 7803b2d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -3,6 +3,8 @@ FROM python:3.9
3
  WORKDIR /code
4
  COPY . .
5
 
 
 
6
  RUN pip install --no-cache-dir -r requirements.txt
7
 
8
  CMD ["python", "script.py"]
 
3
  WORKDIR /code
4
  COPY . .
5
 
6
+ RUN apt-get update && apt-get install -y libgl1-mesa-glx
7
+
8
  RUN pip install --no-cache-dir -r requirements.txt
9
 
10
  CMD ["python", "script.py"]