Skydata001 commited on
Commit
5aa4975
·
verified ·
1 Parent(s): 8125379

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -3,4 +3,5 @@ WORKDIR /code
3
  COPY requirements.txt .
4
  RUN pip install --no-cache-dir -r requirements.txt
5
  COPY . .
6
- CMD ["python", "main.py"]
 
 
3
  COPY requirements.txt .
4
  RUN pip install --no-cache-dir -r requirements.txt
5
  COPY . .
6
+ # إضافة -u تجعل اللوق يظهر فوراً في Hugging Face
7
+ CMD ["python", "-u", "main.py"]