she / Dockerfile
dracoox's picture
Update Dockerfile
610df95 verified
raw
history blame contribute delete
446 Bytes
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