File size: 446 Bytes
fda183a
 
610df95
 
 
 
 
 
fda183a
 
610df95
1
2
3
4
5
6
7
8
9
10
11
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