hkai20000 commited on
Commit
2272e29
·
verified ·
1 Parent(s): 0799ac0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -21,9 +21,12 @@ FROM python:3.10-slim
21
 
22
  # Copy application code and data files
23
  COPY main.py .
 
24
  COPY interactions_data.json .
25
  COPY medlineplus_map.json .
26
  COPY medlineplus_cache.json .
 
 
27
 
28
  # Expose port (Hugging Face Spaces uses 7860)
29
  EXPOSE 7860
 
21
 
22
  # Copy application code and data files
23
  COPY main.py .
24
+ COPY router_chat.py .
25
  COPY interactions_data.json .
26
  COPY medlineplus_map.json .
27
  COPY medlineplus_cache.json .
28
+ COPY services/ ./services/
29
+ COPY data/ ./data/
30
 
31
  # Expose port (Hugging Face Spaces uses 7860)
32
  EXPOSE 7860