FROM debian:sid RUN apt update RUN useradd -m -u 1000 user RUN apt install wget curl sudo git -y RUN git clone https://github.com/dylanaraps/neofetch.git /opt/neofetch && \ ln -s /opt/neofetch/neofetch /usr/local/bin/neofetch RUN curl -fsSL https://code-server.dev/install.sh | sh ENV HOME=/home/user \ PATH=/home/user/.local/bin:$PATH CMD ["code-server", "--auth", "none", "--bind-addr", "0.0.0.0:7860"]