Spaces:
Building
Building
File size: 350 Bytes
7ce6235 4aa5fbe 36ff282 c84e75a 7ce6235 f701867 |
1 2 3 4 5 6 7 8 9 10 11 |
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"] |