Skip to content

Instantly share code, notes, and snippets.

@StefanCristian
Created March 16, 2016 08:14
Show Gist options
  • Save StefanCristian/0f5707cd7d01b715afd8 to your computer and use it in GitHub Desktop.
Save StefanCristian/0f5707cd7d01b715afd8 to your computer and use it in GitHub Desktop.
# Based on Ubuntu 14.04 Image
############################################################
# Set the base image to use to Ubuntu
FROM ubuntu:14.04
MAINTAINER Maintaner Stefan
RUN apt-get update && apt-get install -y openssh-server
RUN mkdir /var/run/sshd
RUN echo 'root:Gentoo123!' | chpasswd
RUN sed -i 's/PermitRootLogin without-password/PermitRootLogin yes/' /etc/ssh/sshd_config
RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd
ENV NOTVISIBLE "in users profile"
RUN echo "export VISIBLE=now" >> /etc/profile
EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment