dolor8946 commited on
Commit
5ab02e1
1 Parent(s): aca1e50

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -1,7 +1,10 @@
1
  FROM python:3.8-slim
2
 
3
  RUN apt-get update && apt-get install -y \
4
- git && rm -rf /var/lib/apt/lists/*
 
 
 
5
 
6
  COPY app.py /app/app.py
7
  COPY model.pt /app/model.pt
 
1
  FROM python:3.8-slim
2
 
3
  RUN apt-get update && apt-get install -y \
4
+ git \
5
+ libgl1-mesa-glx \
6
+ libglib2.0-0 \
7
+ && rm -rf /var/lib/apt/lists/*
8
 
9
  COPY app.py /app/app.py
10
  COPY model.pt /app/model.pt