COCODEDE04 commited on
Commit
73d7334
·
verified ·
1 Parent(s): 28de702

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -12,7 +12,12 @@ RUN pip install --no-cache-dir -r /app/requirements.txt
12
  # Copy the code and model
13
  COPY app.py /app/app.py
14
  COPY best_model.h5 /app/best_model.h5
 
 
15
  COPY means_std.json /app/means_std.json
 
 
 
16
 
17
  EXPOSE 7860
18
 
 
12
  # Copy the code and model
13
  COPY app.py /app/app.py
14
  COPY best_model.h5 /app/best_model.h5
15
+ COPY best_model.keras /app/best_model.keras
16
+ COPY best_model_converted.keras /app/best_model_converted.keras
17
  COPY means_std.json /app/means_std.json
18
+ COPY imputer.joblib /app/imputer.joblib
19
+ COPY scaler.joblib /app/scaler.joblib
20
+ COPY best_params_and_metrics.json /app/best_params_and_metrics.json
21
 
22
  EXPOSE 7860
23