shank commited on
Commit ·
ea7105c
1
Parent(s): cd3a400
Fix: Changed dependencies
Browse files- Dockerfile +1 -1
- pyproject.toml +1 -1
- requirements.txt +2 -2
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM python:3.10
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
|
|
|
| 1 |
+
FROM python:3.10-slim
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
pyproject.toml
CHANGED
|
@@ -18,7 +18,7 @@ dependencies = [
|
|
| 18 |
"python-dotenv==1.0.1",
|
| 19 |
"pytest==8.1.0",
|
| 20 |
"httpx==0.27.0",
|
| 21 |
-
"RestrictedPython==7.
|
| 22 |
]
|
| 23 |
|
| 24 |
[project.scripts]
|
|
|
|
| 18 |
"python-dotenv==1.0.1",
|
| 19 |
"pytest==8.1.0",
|
| 20 |
"httpx==0.27.0",
|
| 21 |
+
"RestrictedPython==7.0"
|
| 22 |
]
|
| 23 |
|
| 24 |
[project.scripts]
|
requirements.txt
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
fastapi==0.110.0
|
| 2 |
uvicorn==0.29.0
|
| 3 |
pydantic==2.6.4
|
| 4 |
-
openai==
|
| 5 |
requests==2.31.0
|
| 6 |
python-dotenv==1.0.1
|
| 7 |
pytest==8.1.0
|
| 8 |
httpx==0.27.0
|
| 9 |
-
RestrictedPython==7.
|
|
|
|
| 1 |
fastapi==0.110.0
|
| 2 |
uvicorn==0.29.0
|
| 3 |
pydantic==2.6.4
|
| 4 |
+
openai==2.7.2
|
| 5 |
requests==2.31.0
|
| 6 |
python-dotenv==1.0.1
|
| 7 |
pytest==8.1.0
|
| 8 |
httpx==0.27.0
|
| 9 |
+
RestrictedPython==7.0
|