GuysRGithub
commited on
Commit
·
08a70c4
1
Parent(s):
89c0b49
Fix
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,12 +1,12 @@
|
|
| 1 |
FROM python:3.9
|
| 2 |
|
| 3 |
-
RUN
|
| 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
|
| 10 |
|
| 11 |
# Set up a new user named "user" with user ID 1000
|
| 12 |
RUN useradd -m -u 1000 user
|
|
|
|
| 1 |
FROM python:3.9
|
| 2 |
|
| 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
|