MCP DuckDuckGo Search Server

by spences10
Verified
FROM python:3.9-slim WORKDIR /app # Install system dependencies RUN apt-get update && \ apt-get install -y --no-install-recommends \ build-essential \ && rm -rf /var/lib/apt/lists/* # Copy requirements and install Python dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy the rest of the application COPY . . # Build frontend WORKDIR /app/frontend RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \ apt-get install -y nodejs && \ npm install && \ npm run build WORKDIR /app EXPOSE 8000 CMD ["python", "server.py"]