Update Dockerfile
Browse files- Dockerfile +11 -1
Dockerfile
CHANGED
@@ -69,7 +69,17 @@ RUN pip install --no-cache-dir \
|
|
69 |
pytest \
|
70 |
pytest-cov \
|
71 |
pytest-asyncio \
|
72 |
-
httpx
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
|
74 |
# Create symlink for persistent storage
|
75 |
RUN ln -s /data/storage /app/api/storage
|
|
|
69 |
pytest \
|
70 |
pytest-cov \
|
71 |
pytest-asyncio \
|
72 |
+
httpx \
|
73 |
+
PyYAML \
|
74 |
+
python-dotenv \
|
75 |
+
requests \
|
76 |
+
aiohttp \
|
77 |
+
boto3 \
|
78 |
+
minio \
|
79 |
+
tiktoken \
|
80 |
+
openai \
|
81 |
+
tenacity \
|
82 |
+
cryptography
|
83 |
|
84 |
# Create symlink for persistent storage
|
85 |
RUN ln -s /data/storage /app/api/storage
|