# Build output. Huge, host-specific, and rebuilt inside the image anyway. target/ # Not needed to build, and copying it invalidates the build layer on every commit. .git/ .gitignore # Local secrets and local state. `.env` sets STEID_INSECURE_COOKIES for dev; baking # it into an image would silently strip the Secure flag from a deployed instance. .env .env.prod # Local instance state — the database and the bare repositories both belong on the # container's volume, never in the image. *.db *.db-shm *.db-wal data/ # Documentation and editor noise: irrelevant to the build. plans/ CLAUDE.md Dockerfile .dockerignore .DS_Store