Spaces:
Sleeping
Sleeping
GuysRGithub
commited on
Commit
•
b3734ab
1
Parent(s):
08a70c4
Fix
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
@@ -3,10 +3,7 @@ FROM python:3.9
|
|
3 |
RUN apt-get install gcc make
|
4 |
RUN wget http://www.harding.motd.ca/autossh/autossh-1.4e.tgz
|
5 |
RUN tar -xf autossh-1.4e.tgz
|
6 |
-
RUN cd autossh-1.4e
|
7 |
-
RUN ./configure
|
8 |
-
RUN make
|
9 |
-
RUN make install
|
10 |
|
11 |
# Set up a new user named "user" with user ID 1000
|
12 |
RUN useradd -m -u 1000 user
|
|
|
3 |
RUN apt-get install gcc make
|
4 |
RUN wget http://www.harding.motd.ca/autossh/autossh-1.4e.tgz
|
5 |
RUN tar -xf autossh-1.4e.tgz
|
6 |
+
RUN cd autossh-1.4e && ./configure && make && make install
|
|
|
|
|
|
|
7 |
|
8 |
# Set up a new user named "user" with user ID 1000
|
9 |
RUN useradd -m -u 1000 user
|