moraxgiga commited on
Commit
751fb6b
1 Parent(s): 67f004f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -17,7 +17,10 @@ COPY ./requirements.txt /app/requirements.txt
17
  # Install any needed packages specified in requirements.txt
18
  RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
19
 
20
- # Copy the content of the local src directory to /app inside the container
 
 
 
21
  COPY . /app
22
 
23
  # Make port 7860 available to the world outside this container
 
17
  # Install any needed packages specified in requirements.txt
18
  RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
19
 
20
+ # Explicitly copy the jina folder into the container at /app/jina
21
+ COPY ./jina /app/jina
22
+
23
+ # Copy the rest of the application into the container at /app
24
  COPY . /app
25
 
26
  # Make port 7860 available to the world outside this container