mbecchis commited on
Commit
7588168
·
verified ·
1 Parent(s): 0efc5ab

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,8 +1,8 @@
1
  FROM python:3.10
2
 
3
- # System deps for Streamlit + Plotly
4
  RUN apt-get update && apt-get install -y \
5
- libgl1-mesa-glx \
6
  libglib2.0-0 \
7
  && rm -rf /var/lib/apt/lists/*
8
 
 
1
  FROM python:3.10
2
 
3
+ # System dependencies for Streamlit + Plotly + Pandas
4
  RUN apt-get update && apt-get install -y \
5
+ libgl1 \
6
  libglib2.0-0 \
7
  && rm -rf /var/lib/apt/lists/*
8