Bertonlome commited on
Commit
9c02d5a
·
1 Parent(s): d175fdf

Update Dockerfile to launch python_dash_TARS.py with V6 dataset

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -7,12 +7,12 @@ COPY requirements.txt ./
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
9
  # Copy application files explicitly
10
- COPY python_dash_ia.py ./
11
- COPY table_hat_game.csv ./
12
  COPY assets ./assets
13
 
14
  # Expose port 7860 (Hugging Face Spaces default)
15
  EXPOSE 7860
16
 
17
  # Run the application with gunicorn
18
- CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "1", "--threads", "2", "--timeout", "120", "python_dash_ia:server"]
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
9
  # Copy application files explicitly
10
+ COPY python_dash_TARS.py ./
11
+ COPY V6 ./V6
12
  COPY assets ./assets
13
 
14
  # Expose port 7860 (Hugging Face Spaces default)
15
  EXPOSE 7860
16
 
17
  # Run the application with gunicorn
18
+ CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "1", "--threads", "2", "--timeout", "120", "python_dash_TARS:server"]