michelerussoAA commited on
Commit
0f0ec44
·
verified ·
1 Parent(s): 488fb08

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -31,6 +31,5 @@ RUN pip install --no-cache-dir -r requirements.txt
31
  # 4) Your scraper code
32
  COPY . .
33
 
34
- # 5) Expose & run
35
- EXPOSE 7860
36
- CMD ["uvicorn", "scraper:app", "--host", "0.0.0.0", "--port", "7860"]
 
31
  # 4) Your scraper code
32
  COPY . .
33
 
34
+ # no ASGI server here—just run the scraper script
35
+ CMD ["python", "scraper.py"]