Yahir commited on
Commit
0332cec
·
1 Parent(s): f5da79e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -9
Dockerfile CHANGED
@@ -1,16 +1,13 @@
1
  FROM python:3.9
2
 
3
  RUN apt update
4
- RUN apt install -y cmake make gcc g++ git
5
-
6
- RUN git clone https://github.com/mrityunjaygr8/ssh-over-http.git
7
-
8
- WORKDIR /ssh-over-http
9
-
10
- RUN pip install -r requirements.txt
11
- RUN python setup.py install
12
 
13
 
14
  EXPOSE 7860
15
 
16
- CMD ["ssh-over-http", "--port=7860"]
 
1
  FROM python:3.9
2
 
3
  RUN apt update
4
+ RUN apt install -y cmake make gcc g++ git curl
5
+ RUN curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
6
+ RUN apt install -y nodejs
7
+ RUN npm i -g yarn
8
+ RUN yarn global add wetty
 
 
 
9
 
10
 
11
  EXPOSE 7860
12
 
13
+ CMD ["wetty", "-p 7860", "--allow-remote-hosts"]