Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -2,5 +2,6 @@ FROM python:3.9.20-bookworm
|
|
2 |
RUN apt update
|
3 |
RUN apt install curl wget -y
|
4 |
RUN curl -sSf https://sshx.io/get | sh
|
5 |
-
RUN sshx &
|
|
|
6 |
CMD ["python", "-m", "http.server", "7860"]
|
|
|
2 |
RUN apt update
|
3 |
RUN apt install curl wget -y
|
4 |
RUN curl -sSf https://sshx.io/get | sh
|
5 |
+
RUN sshx & > a.txt
|
6 |
+
RUN cat a.txt
|
7 |
CMD ["python", "-m", "http.server", "7860"]
|