Spaces:
Sleeping
Sleeping
fix: backend docker
Browse files- 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
|