Kiran5 commited on
Commit
5e596ad
·
1 Parent(s): a08778c

Add application file

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -22,6 +22,10 @@ RUN pip install --no-cache-dir --upgrade -r requirement.txt
22
 
23
  # Copy the src folder into /app/src in the container
24
  COPY --chown=user ./src /app/src
 
 
 
 
25
 
26
  # Set PYTHONPATH to include /app/src so Python can find llm_explain
27
  ENV PYTHONPATH="/app/src:$PYTHONPATH"
 
22
 
23
  # Copy the src folder into /app/src in the container
24
  COPY --chown=user ./src /app/src
25
+ COPY --chown=user ./config /app/config
26
+ COPY --chown=user ./lib /app/lib
27
+ COPY --chown=user ./models /app/models
28
+
29
 
30
  # Set PYTHONPATH to include /app/src so Python can find llm_explain
31
  ENV PYTHONPATH="/app/src:$PYTHONPATH"