Spaces:
No application file
No application file
Update Dockerfile
Browse files- 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 |
-
|
|
|
|
|
|
| 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"]
|