Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -10,7 +10,7 @@ ENV PERSIST_DIRECTORY=/chroma/chroma
|
|
| 10 |
RUN mkdir -p /chroma/chroma && chmod -R 777 /chroma/chroma
|
| 11 |
|
| 12 |
# Expose the ChromaDB API port
|
| 13 |
-
EXPOSE
|
| 14 |
|
| 15 |
# Start ChromaDB using uvicorn without extra arguments
|
| 16 |
-
CMD ["uvicorn", "chromadb.app:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 10 |
RUN mkdir -p /chroma/chroma && chmod -R 777 /chroma/chroma
|
| 11 |
|
| 12 |
# Expose the ChromaDB API port
|
| 13 |
+
EXPOSE 7890
|
| 14 |
|
| 15 |
# Start ChromaDB using uvicorn without extra arguments
|
| 16 |
+
CMD ["uvicorn", "chromadb.app:app", "--host", "0.0.0.0", "--port", "7890"]
|