saicharan1234 commited on
Commit
d3e887f
·
verified ·
1 Parent(s): 6a43d85

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -1,5 +1,12 @@
1
  FROM python:3.10.12
2
 
 
 
 
 
 
 
 
3
  WORKDIR /code
4
 
5
  COPY ./requirements.txt /code/requirements.txt
 
1
  FROM python:3.10.12
2
 
3
+ # Install system dependencies
4
+ RUN apt-get update && apt-get install -y \
5
+ libgl1-mesa-glx \
6
+ python3-opencv \
7
+ && apt-get clean \
8
+ && rm -rf /var/lib/apt/lists/*
9
+
10
  WORKDIR /code
11
 
12
  COPY ./requirements.txt /code/requirements.txt