limitedstuff-fixed / Dockerfile
1tbfree's picture
Update Dockerfile
4aa5fbe verified
raw
history blame contribute delete
350 Bytes
FROM ubuntu:latest
WORKDIR /tmp/vpsdata
RUN mkdir /tmp/vpsdata
RUN chmod +777 /tmp/vpsdata
RUN chpasswd root:no
RUN apt update
RUN apt install sudo curl wget neofetch -y
RUN wget https://github.com/yudai/gotty/releases/download/v1.0.1/gotty_linux_amd64.tar.gz
RUN tar -xf gotty_linux_amd64.tar.gz
RUN chmod +x gotty
CMD ["./gotty", "-w", "/bin/bash"]