e857bf4ec6
- grammY bot: /start, /unlock, /tip, /contact, /claim, /settings, /wallet - AES-256-GCM mnemonic encryption with scrypt key derivation - In-memory unlock sessions with background sweep - Atomic claim handling (TOCTOU-safe) - PIN rate limiting (5 attempts → 15 min lockout) - Fastify API server + Telegram Mini App (setup, unlock, send, receive, history) - One-time seed reveal via Mini App or auto-deleted DM message - Federated registry client - Docker Compose deployment Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
436 B
Docker
23 lines
436 B
Docker
FROM node:22-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
COPY package.json ./
|
|
RUN npm install
|
|
COPY tsconfig.json ./
|
|
COPY src ./src
|
|
RUN npm run build
|
|
|
|
FROM node:22-alpine AS runner
|
|
|
|
WORKDIR /app
|
|
RUN apk add --no-cache python3 make g++ sqlite
|
|
COPY package.json ./
|
|
RUN npm install --omit=dev
|
|
COPY --from=builder /app/dist ./dist
|
|
COPY webapp ./webapp
|
|
|
|
RUN mkdir -p /app/data && chown -R node:node /app/data
|
|
|
|
USER node
|
|
CMD ["node", "dist/bot/index.js"]
|