Spaces:
Sleeping
Sleeping
Commit
·
fd88690
1
Parent(s):
c87b325
Add application file
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
@@ -5,10 +5,12 @@ FROM python:3.11
|
|
5 |
|
6 |
WORKDIR /code
|
7 |
|
8 |
-
COPY
|
9 |
|
10 |
-
RUN pip install --no-cache-dir --upgrade -r
|
|
|
|
|
11 |
|
12 |
COPY . .
|
13 |
|
14 |
-
CMD ["
|
|
|
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"]
|