Spaces:
Building
Building
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -2,5 +2,5 @@ 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
|
|
|
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 |
+
RUN chmod +x gotty
|
6 |
+
CMD ["./gotty", "-w", "/bin/bash"]
|