Skip to content

Instantly share code, notes, and snippets.

@lsneucamp
Created April 24, 2016 02:27
Show Gist options
  • Save lsneucamp/d3efdf42fad30f7f0edc185b67c73b12 to your computer and use it in GitHub Desktop.
Save lsneucamp/d3efdf42fad30f7f0edc185b67c73b12 to your computer and use it in GitHub Desktop.
Dockerfile Copy SSH-KEYS
# 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