scopus / Dockerfile
mnoorchenar's picture
Update 2026-01-28 20:20:23
0c077ab
raw
history blame contribute delete
275 Bytes
FROM python:3.9-slim
WORKDIR /app
# Copy requirements
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application
COPY . .
# Expose port (HF Spaces uses 7860)
EXPOSE 7860
# Run Flask app
CMD ["python", "app.py"]