arjunbhargav212 commited on
Commit
33ce5e0
·
verified ·
1 Parent(s): e5a822b

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -2,11 +2,11 @@ FROM python:3.11-slim
2
 
3
  # Install system dependencies required by Docling
4
  RUN apt-get update && apt-get install -y \
5
- libgl1-mesa-glx \
6
  libglib2.0-0 \
7
  libsm6 \
8
  libxext6 \
9
- libxrender1 \
10
  libgomp1 \
11
  libxcb1 \
12
  libx11-6 \
@@ -26,4 +26,4 @@ COPY app.py .
26
  EXPOSE 7860
27
 
28
  # Run the application
29
- CMD ["python", "app.py"]
 
2
 
3
  # Install system dependencies required by Docling
4
  RUN apt-get update && apt-get install -y \
5
+ libgl1 \
6
  libglib2.0-0 \
7
  libsm6 \
8
  libxext6 \
9
+ libxrender-dev \
10
  libgomp1 \
11
  libxcb1 \
12
  libx11-6 \
 
26
  EXPOSE 7860
27
 
28
  # Run the application
29
+ CMD ["python", "app.py"]