Papizee commited on
Commit
501fd60
·
verified ·
1 Parent(s): 8da0b02

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,9 +2,9 @@ FROM python:3.10-slim
2
 
3
  WORKDIR /app
4
 
5
- # Install system dependencies needed for TensorFlow and Pillow
6
  RUN apt-get update && apt-get install -y \
7
- libgl1-mesa-glx \
8
  libglib2.0-0 \
9
  && rm -rf /var/lib/apt/lists/*
10
 
 
2
 
3
  WORKDIR /app
4
 
5
+ # Install system dependencies (fixed for newer Debian)
6
  RUN apt-get update && apt-get install -y \
7
+ libgl1 \
8
  libglib2.0-0 \
9
  && rm -rf /var/lib/apt/lists/*
10