srikarp commited on
Commit
5a2a081
·
verified ·
1 Parent(s): 27a54c4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -13,12 +13,12 @@ COPY requirements.txt .
13
  RUN pip install --no-cache-dir -r requirements.txt
14
 
15
  COPY app.py .
16
- COPY index.html .
17
  COPY model_architecture.json .
18
  COPY best_weights.weights.h5 .
19
  COPY class_names.json .
20
  COPY symptoms.json .
21
  COPY medicines.json .
 
22
 
23
  EXPOSE 7860
24
 
 
13
  RUN pip install --no-cache-dir -r requirements.txt
14
 
15
  COPY app.py .
 
16
  COPY model_architecture.json .
17
  COPY best_weights.weights.h5 .
18
  COPY class_names.json .
19
  COPY symptoms.json .
20
  COPY medicines.json .
21
+ COPY static/ ./static/
22
 
23
  EXPOSE 7860
24