devindia commited on
Commit
84e3dca
·
verified ·
1 Parent(s): b571825

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -5,12 +5,12 @@ FROM python:3.10-slim
5
 
6
  # OpenCV and other libs need these
7
  RUN apt-get update && apt-get install -y --no-install-recommends \
8
- libgl1-mesa-glx \
9
  libglib2.0-0 \
10
  libsm6 \
11
  libxext6 \
12
- libxrender-dev \
13
- && rm -rf /var/lib/apt/lists/*
14
 
15
  WORKDIR /app
16
 
 
5
 
6
  # OpenCV and other libs need these
7
  RUN apt-get update && apt-get install -y --no-install-recommends \
8
+ libgl1 \
9
  libglib2.0-0 \
10
  libsm6 \
11
  libxext6 \
12
+ libxrender1 \
13
+ && rm -rf /var/lib/apt/lists/*
14
 
15
  WORKDIR /app
16