| FROM ghcr.io/m1k1o/neko/xfce | |
| user root | |
| RUN apt-get update && apt-get install -y \ | |
| curl wget sudo cron procps \ | |
| && rm -rf /var/lib/apt/lists/* | |
| COPY install.sh /app/install.sh | |
| RUN chmod +x /app/install.sh && \ | |
| bash /app/install.sh -y -P 8888 --ssl-disable || true | |
| ENV NEKO_FILETRANSFER_ENABLED=true | |
| ENV NEKO_FILETRANSFER_DIR="./uploads" | |
| ENV NEKO_FILETRANSFER_REFRESH_INTERVAL="30s" | |
| ENV NEKO_DESKTOP_SCREEN=1920x1080@30 |