Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
|
@@ -1,6 +1,5 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
FROM python:3.11-slim-buster
|
| 4 |
|
| 5 |
# Install tini for process supervision
|
| 6 |
RUN apt-get update && apt-get install -y tini && rm -rf /var/lib/apt/lists/*
|
|
|
|
| 1 |
+
# Use a suitable Python base image (Updated to bookworm)
|
| 2 |
+
FROM python:3.11-slim-bookworm
|
|
|
|
| 3 |
|
| 4 |
# Install tini for process supervision
|
| 5 |
RUN apt-get update && apt-get install -y tini && rm -rf /var/lib/apt/lists/*
|