vps / Dockerfile
New-Bing's picture
Update Dockerfile
971ab30 verified
raw
history blame contribute delete
397 Bytes
# 使用 Ubuntu 22.04 作为基础镜像
FROM ubuntu:22.04
# 安装 Shellinabox
RUN apt-get update && \
apt-get install -y shellinabox && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# 设置 root 用户的密码为 'root'
RUN echo 'root:123456' | chpasswd
# 暴露 22 端口
EXPOSE 22
# 启动 Shellinabox
CMD ["/usr/bin/shellinaboxd", "-t", "-s", "/:LOGIN"]