Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
FROM python:3.9.20-bookworm
|
2 |
RUN apt update
|
3 |
-
RUN apt install
|
|
|
4 |
RUN sshx &
|
5 |
CMD ["python", "-m", "http.server", "7860"]
|
|
|
1 |
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"]
|