M1: initial scaffold — pipeline, specs, source, Dockerfile

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Paul O'Reilly
2026-04-17 23:52:40 +12:00
commit 8584def154
22 changed files with 1413 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM mcr.microsoft.com/playwright/node:20-noble
WORKDIR /app
# Install dependencies first (layer cache)
COPY package*.json ./
RUN npm ci --omit=dev
# Copy source
COPY src/ ./src/
# Create default output dir (overridden by volume mount at runtime)
RUN mkdir -p /output
ENV OUTPUT_DIR=/output
ENV NODE_ENV=production
ENTRYPOINT ["node", "src/index.js"]