TRC535 / Dockerfile
Arefgh-00's picture
Create Dockerfile
66a817d verified
Raw
History Blame Contribute Delete
276 Bytes
FROM python:3.9-slim
RUN apt-get update && apt-get install -y libmagic1 && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# پورت مخصوص Hugging Face
EXPOSE 7860
CMD ["python", "app.py"]