srivatsavdamaraju commited on
Commit
4f1c429
1 Parent(s): e8e2c5f

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -14
Dockerfile DELETED
@@ -1,14 +0,0 @@
1
- # Base image for Chroma
2
- FROM chromadb/chroma:latest
3
-
4
- # Set environment variables
5
- ENV CHROMA_DATA_PATH=/data
6
-
7
- # Create a directory for the database
8
- RUN mkdir -p $CHROMA_DATA_PATH
9
-
10
- # Expose the port
11
- EXPOSE 8000
12
-
13
- # Run Chroma server directly with the correct arguments
14
- CMD ["chroma", "run", "--host", "0.0.0.0", "--port", "8000", "--path", "/data"]