astronolan commited on
Commit
a80774c
·
1 Parent(s): a9cdd08

Copy PCA model into Space image

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -16,6 +16,7 @@ COPY app.py .
16
  COPY src/ ./src/
17
  COPY clip/ ./clip/
18
  COPY aionsearchmodel.pt .
 
19
 
20
  # Create necessary directories
21
  RUN mkdir -p data/processed logs
@@ -25,4 +26,4 @@ EXPOSE 7860
25
 
26
  # Run the application with gunicorn for production
27
  # Increased timeout and workers for HF Spaces
28
- CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "2", "--threads", "4", "--timeout", "600", "app:server"]
 
16
  COPY src/ ./src/
17
  COPY clip/ ./clip/
18
  COPY aionsearchmodel.pt .
19
+ COPY aion_search_pca96_model.npz .
20
 
21
  # Create necessary directories
22
  RUN mkdir -p data/processed logs
 
26
 
27
  # Run the application with gunicorn for production
28
  # Increased timeout and workers for HF Spaces
29
+ CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "2", "--threads", "4", "--timeout", "600", "app:server"]