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

# Alpine with Tcl (checked 2025-10-13: alpine:latest with tcl is current)
FROM alpine:latest

# Install Tcl and required packages (curl for HTTPS, jq for JSON parsing)
RUN apk add --no-cache tcl ca-certificates curl jq

WORKDIR /app
COPY uncloseai.tcl .
RUN chmod +x uncloseai.tcl

CMD ["tclsh", "uncloseai.tcl"]
