Created
April 24, 2016 02:27
-
-
Save lsneucamp/d3efdf42fad30f7f0edc185b67c73b12 to your computer and use it in GitHub Desktop.
Dockerfile Copy SSH-KEYS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fixes empty home | |
ENV HOME /root | |
# add custom ssh config / keys to the root user | |
ADD .ssh/ /root/.ssh/ | |
# Fixes permission if needed | |
RUN chmod 600 /root/.ssh/* | |
# Avoid first connection host confirmation | |
RUN ssh-keyscan -p22 example.com > /root/.ssh/known_hosts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment