File size: 436 Bytes
c55030e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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 |