e1250 commited on
Commit
e4f7a5c
·
1 Parent(s): 22a85f1

fix: backend docker

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
  FROM python:3.11-slim
2
 
3
  # Install git package for our ai package, then clear cache to save docker space.
4
- RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
5
 
6
  # Working dir inside the container.
7
  WORKDIR /app
 
1
  FROM python:3.11-slim
2
 
3
  # Install git package for our ai package, then clear cache to save docker space.
4
+ RUN apt-get update && apt-get install -y git libgl1 libglib2.0-0 && rm -rf /var/lib/apt/lists/*
5
 
6
  # Working dir inside the container.
7
  WORKDIR /app