mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-08 00:51:55 +00:00
10 lines
230 B
Docker
10 lines
230 B
Docker
![]() |
FROM ubuntu
|
||
|
RUN apt update \
|
||
|
&& apt install -y openssh-server
|
||
|
|
||
|
RUN ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa
|
||
|
RUN cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
|
||
|
|
||
|
ADD bootstrap.sh /etc/bootstrap.sh
|
||
|
CMD ["bash", "/etc/bootstrap.sh"]
|