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

# SWI-Prolog 9.2.9 (checked 2025-10-13: swipl:9.2.9 is latest stable)
FROM swipl:9.2.9

RUN apt-get update && \
    apt-get install -y ca-certificates && \
    rm -rf /var/lib/apt/lists/*

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

CMD ["swipl", "-s", "uncloseai.pl"]
