# syntax=docker/dockerfile:1 FROM sophgo/tpuc_dev:v3.1 ENV MAMBA_ROOT_PREFIX=~/micromamba ENV PATH="/usr/local/bin:$PATH" RUN <> /etc/ssh/sshd_config echo "PasswordAuthentication yes" >> /etc/ssh/sshd_config echo "PubkeyAuthentication yes" >> /etc/ssh/sshd_config echo "Port 22" >> /etc/ssh/sshd_config mkdir /var/run/sshd echo 'root:cdcdocker' | chpasswd # Install Micromamba echo 1 | bash <(curl -s https://cdn.jsdelivr.net/gh/hotwa/MicroMamba_Installer@main/install.sh) micromamba shell init -s bash -p ~/micromamba mkdir -p ~/.pip echo " [global] index-url = https://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com " >> ~/.pip/pip.conf EOT CMD ["/usr/sbin/sshd", "-D"]