Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -12,6 +12,8 @@ COPY requirements.txt .
|
|
| 12 |
# Install dependencies
|
| 13 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 14 |
|
|
|
|
|
|
|
| 15 |
# Copy application code and ChromaDB directory
|
| 16 |
COPY . .
|
| 17 |
|
|
|
|
| 12 |
# Install dependencies
|
| 13 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 14 |
|
| 15 |
+
# In your Dockerfile
|
| 16 |
+
RUN mkdir -p /app/chroma_db
|
| 17 |
# Copy application code and ChromaDB directory
|
| 18 |
COPY . .
|
| 19 |
|