This file contains hidden or 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
FROM debian:stretch | |
# Remove the host keys because it's not safe to package those. The entrypoint | |
# will establish a convention for providing them in the environment and | |
# generating new ones automatically. | |
RUN apt update && \ | |
apt install --assume-yes ssh && \ | |
rm /etc/ssh/ssh_host_* && \ | |
rm -rf /var/lib/apt/lists/* |