kushagrasharma-13 commited on
Commit
fd88690
·
1 Parent(s): c87b325

Add application file

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -3
Dockerfile CHANGED
@@ -5,10 +5,12 @@ FROM python:3.11
5
 
6
  WORKDIR /code
7
 
8
- COPY ./requirements.txt ./requirements.txt
9
 
10
- RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
 
 
11
 
12
  COPY . .
13
 
14
- CMD ["docker run -p 6333:6333 qdrant/qdrant", "python ingest.py"]
 
5
 
6
  WORKDIR /code
7
 
8
+ COPY requirements.txt requirements.txt
9
 
10
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
+
12
+ RUN docker run -p 6333:6333 qdrant/qdrant
13
 
14
  COPY . .
15
 
16
+ CMD ["python", "ingest.py"]