# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
# https://www.permacomputer.com

# TypeScript 5.9.3 (checked 2025-10-13: typescript@5.9.3 is latest stable)
FROM node:23-alpine

WORKDIR /app

COPY package.json tsconfig.json uncloseai.ts ./

RUN npm install && npm run build

CMD ["node", "uncloseai.js"]
