Gaurav vashistha commited on
Commit
89cefce
·
1 Parent(s): c84b6d2

fix: remove system dependencies not needed for headless opencv

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
  FROM python:3.10-slim
2
  WORKDIR /app
3
- RUN apt-get update && apt-get install -y libgl1-mesa-glx libglib2.0-0 && rm -rf /var/lib/apt/lists/*
4
  COPY requirements.txt .
5
  RUN pip install --no-cache-dir -r requirements.txt
6
  COPY . .
 
1
  FROM python:3.10-slim
2
  WORKDIR /app
3
+
4
  COPY requirements.txt .
5
  RUN pip install --no-cache-dir -r requirements.txt
6
  COPY . .