llmrouter / Dockerfile
ussef083's picture
Update Dockerfile
f52ed76 verified
Raw
History Blame Contribute Delete
415 Bytes
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"]