reddit-cli/Dockerfile

28 lines
590 B
Docker

# Dockerfile for Reddit MCP Server
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Copy requirements first (for better caching)
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY src/ ./src/
COPY run_mcp_server.sh .
# Make the run script executable
RUN chmod +x run_mcp_server.sh
# Expose port
EXPOSE 5000
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD curl -f http://localhost:5000/health || exit 1
# Default command
CMD ["./run_mcp_server.sh"]