5 lines
117 B
Docker
Executable File
5 lines
117 B
Docker
Executable File
FROM debian:latest
|
|
RUN apt-get update && apt-get -y install openssh-client python3
|
|
ADD run /bin/
|
|
ENTRYPOINT /bin/run
|