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