docker
Installation
SKILL.md
Docker Skill
Guidance for containerizing applications with Docker, Docker Compose, and multi-stage builds.
Quick Start
# Dockerfile for Laravel
FROM php:8.3-fpm AS base
WORKDIR /var/www/html
# Install system dependencies
RUN apt-get update && apt-get install -y \
git curl zip unzip
# Install Composer
COPY /usr/bin/composer /usr/bin/composer