Skip to content

Instantly share code, notes, and snippets.

@hgain
hgain / Dockerfile.trafilatura
Created May 17, 2026 11:38
Trafilatura MCP Server Dockerfile
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
EXPOSE 8000
CMD ["python", "main.py"]