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

# GNU AWK 5.3.2 (checked 2025-10-13: gawk 5.3.2-r2 is latest in Alpine edge)
FROM alpine:latest

RUN apk add --no-cache gawk curl ca-certificates

WORKDIR /app
COPY uncloseai.awk .

RUN chmod +x uncloseai.awk

CMD ["./uncloseai.awk"]
