Spaces:
Sleeping
Sleeping
selvaneyas commited on
Commit ·
82d2168
1
Parent(s): dbc7f15
update Dockerfile to use Python 3.10-slim
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
# Use official Python image
|
| 2 |
-
FROM python:3.9
|
|
|
|
|
|
|
| 3 |
|
| 4 |
# Set working directory
|
| 5 |
WORKDIR /app
|
|
|
|
| 1 |
# Use official Python image
|
| 2 |
+
#FROM python:3.9
|
| 3 |
+
# Use official Python image (3.10 is required for Gemini)
|
| 4 |
+
FROM python:3.10-slim
|
| 5 |
|
| 6 |
# Set working directory
|
| 7 |
WORKDIR /app
|