tkc / Dockerfile
Skydata001's picture
Update Dockerfile
5aa4975 verified
raw
history blame contribute delete
221 Bytes
FROM python:3.10
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# إضافة -u تجعل اللوق يظهر فوراً في Hugging Face
CMD ["python", "-u", "main.py"]