docker

Installation
SKILL.md

Docker

Complete guide to containerization with Docker - images, containers, compose, and best practices.

Dockerfile

Basic Dockerfile

FROM python:3.12-slim

WORKDIR /app

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

# Copy application
COPY . .
Installs
7
GitHub Stars
7
First Seen
Apr 20, 2026
docker — codeatcode/oss-ai-skills