docker-patterns — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited docker-patterns (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
@rules/security/backend.md — never bake secrets into image layers, inject them at runtime; apply least privilege (non-root user, dropped capabilities, least-privileged DB user).@rules/laravel/laravel.mdc — respect Laravel's directory layout, artisan commands, and config caching.:latest) for reproducible builds..env and secrets stay out of images and out of git.Dockerfile / docker-compose.yml for a Laravel app.Separate Composer deps, the Vite/asset build, and the lean runtime so each layer caches independently and dev tooling never ships to production.
# syntax=docker/dockerfile:1
# --- Stage: composer deps (cached unless composer.* change) ---
FROM composer:2 AS vendor
WORKDIR /app
COPY composer.json composer.lock ./
RUN composer install --no-dev --no-scripts --prefer-dist \
--optimize-autoloader --no-interaction
# --- Stage: node/vite asset build ---
FROM node:22-alpine AS assets
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY vite.config.js ./
COPY resources ./resources
RUN npm run build # emits public/build via laravel-vite-plugin
# --- Stage: runtime (php-fpm, non-root, opcache) ---
FROM php:8.3-fpm-alpine AS runtime
RUN apk add --no-cache fcgi \
&& docker-php-ext-install pdo_mysql opcache bcmath pcntl \
&& addgroup -g 1000 -S app && adduser -S app -u 1000 -G app
COPY docker/php/opcache.ini /usr/local/etc/php/conf.d/opcache.ini
WORKDIR /var/www/html
COPY --chown=app:app . .
COPY --from=vendor --chown=app:app /app/vendor ./vendor
COPY --from=assets --chown=app:app /app/public/build ./public/build
USER app
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s \
CMD php-fpm-healthcheck || exit 1
EXPOSE 9000
CMD ["php-fpm"]Key points:
--no-dev --optimize-autoloader strips dev packages and builds a classmap autoloader — smaller image, faster boot.--no-scripts during build avoids running artisan before the full app is copied; run cache-warming at deploy/entrypoint instead.opcache.ini: opcache.enable=1, opcache.validate_timestamps=0 (no per-request stat — invalidate by redeploying), tuned memory_consumption / max_accelerated_files.app user; the alpine base keeps the image small.opcache.enable=1
opcache.memory_consumption=256
opcache.max_accelerated_files=20000
opcache.validate_timestamps=0
opcache.preload=/var/www/html/preload.php
opcache.preload_user=appservices:
app: # PHP-FPM
build: { context: ., target: runtime }
volumes:
- .:/var/www/html # bind mount for hot reload
- /var/www/html/vendor # protect image vendor from host
env_file: [.env]
depends_on:
mysql: { condition: service_healthy }
redis: { condition: service_started }
nginx:
image: nginx:1.27-alpine
ports: ["8080:80"]
volumes:
- .:/var/www/html
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf:ro
depends_on: [app]
mysql:
image: mysql:8.4
environment:
MYSQL_DATABASE: app
MYSQL_USER: app
MYSQL_PASSWORD: ${DB_PASSWORD} # from host/.env, never inline
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
ports: ["127.0.0.1:3306:3306"] # host-only; omit entirely in prod
volumes: [mysqldata:/var/lib/mysql]
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
interval: 5s
timeout: 3s
retries: 10
redis:
image: redis:7-alpine
command: ["redis-server", "--maxmemory-policy", "allkeys-lru"]
volumes: [redisdata:/data]
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 3s
retries: 5
queue: # worker — same image, different command
build: { context: ., target: runtime }
command: ["php", "artisan", "queue:work", "redis", "--tries=3", "--max-time=3600"]
env_file: [.env]
restart: unless-stopped
depends_on:
redis: { condition: service_started }
mysql: { condition: service_healthy }
scheduler: # one container running the scheduler loop
build: { context: ., target: runtime }
command: ["php", "artisan", "schedule:work"]
env_file: [.env]
restart: unless-stopped
depends_on:
mysql: { condition: service_healthy }
volumes:
mysqldata:
redisdata:DB_HOST=mysql, REDIS_HOST=redis.schedule:work runs the scheduler in-container (replaces a host crontab); the queue worker is its own restartable container so it scales independently of web.npm run dev in a node service exposing port 5173, instead of the build stage.php-fpm-healthcheck (or a small FastCGI ping) — a plain TCP check won't catch a wedged pool.depends_on: { condition: service_healthy } so the app doesn't boot before MySQL accepts connections.restart: unless-stopped so a transient crash self-recovers.env_file / environment / orchestrator secrets — never ENV SECRET=... or COPY .env into a layer (layers are inspectable forever; see @rules/security/backend.md).--mount=type=secret for build-time-only secrets (private Composer repo token) so they never persist in the final image.GRANT ALL); reserve root for migrations/admin only.vendor
node_modules
.env
.env.*
.git
storage/logs/*
storage/framework/cache/*
public/build
docker-compose*.yml
*.md
testsExcluding vendor/node_modules shrinks build context and forces deps to come from the cached composer/npm ci layers, not stale host copies.
composer.json composer.lock (and package*.json) before the app source so dependency layers cache across code changes.-alpine bases; install with --no-cache (apk) / clean apt lists in the same RUN.RUN commands with && to avoid extra layers; multi-stage keeps build tools out of the runtime image.--mount=type=cache (BuildKit) for the Composer/npm cache to speed rebuilds without bloating the image.:latest tags — non-reproducible builds. Pin versions.USER a non-root user.docker-compose.yml or image layers — use env/secrets.down. Use named volumes.--no-dev optimized autoload + opcache, and contains no secrets or dev tooling.service_healthy..dockerignore excludes vendor, node_modules, .env, .git.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.