mlops-deployment

Installation
SKILL.md

MLOps & Deployment

Deploy and maintain ML models in production with robust infrastructure.

Quick Start

Dockerize ML Model

FROM python:3.10-slim

WORKDIR /app

# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

# Copy model and code
COPY model.pkl .
COPY app.py .
Installs
16
GitHub Stars
4
First Seen
Jan 24, 2026
mlops-deployment — pluginagentmarketplace/custom-plugin-ai-data-scientist