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 .