Created
May 5, 2015 01:33
-
-
Save amcorreia/ec20776816a05ea83842 to your computer and use it in GitHub Desktop.
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
FROM debian | |
MAINTAINER Alessandro Madruga Correia "[email protected]" | |
RUN echo 'Acquire::http::Proxy "http://172.17.42.1:3142"; ' > /etc/apt/apt.conf.d/01proxy | |
RUN apt-get update | |
RUN apt-get install -y openssh-server sudo | |
EXPOSE 22 | |
RUN mkdir -p /var/run/sshd | |
RUN chmod 0755 /var/run/sshd | |
# Create and configure vagrant user | |
RUN useradd --create-home -s /bin/bash vagrant | |
WORKDIR /home/vagrant | |
# Configure SSH access | |
RUN mkdir -p /home/vagrant/.ssh | |
RUN echo "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key" > /home/vagrant/.ssh/authorized_keys | |
RUN chown -R vagrant: /home/vagrant/.ssh | |
RUN echo -n 'vagrant:vagrant' | chpasswd | |
# Enable passwordless sudo for the "vagrant" user | |
RUN echo 'vagrant ALL=NOPASSWD: ALL' > /etc/sudoers.d/vagrant | |
CMD /usr/sbin/sshd -D -o UseDNS=no -o UsePAM=no |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment