Spaces:
Building
Building
Create Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM ubuntu:latest
|
2 |
+
WORKDIR /vps
|
3 |
+
RUN wget https://github.com/yudai/gotty/releases/download/v1.0.1/gotty_linux_amd64.tar.gz
|
4 |
+
RUN tar -xf gotty_linux_amd64.tar.gz
|
5 |
+
chmod +x gotty
|
6 |
+
./gotty /bin/bash
|