CoolFace
Apppublic

FakeNewsDetector/Space1

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
0likes
Dockerfile18 linesDownload Raw Back to root
1# Use official Python runtime2FROM python:3.113 4# Set working directory5WORKDIR /app6 7# Install dependencies8COPY requirements.txt .9RUN pip install --no-cache-dir -r requirements.txt10 11# Copy all files12COPY . .13 14# Expose port 7860 (Hugging Face requirement)15EXPOSE 786016 17# Run with Gunicorn18CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]