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

# Vanilla JavaScript (browser-based) - served with Python's simple HTTP server
FROM python:3.13-alpine

WORKDIR /app

COPY uncloseai.html index.html

EXPOSE 8000

CMD ["python3", "-m", "http.server", "8000"]
