| FROM debian:$DEBIAN_VER |
| |
| USER root |
| |
| RUN echo "deb http://http.debian.net/debian/ $DEBIAN_VER contrib" >> /etc/apt/sources.list |
| |
| ENV DEBIAN_FRONTEND noninteractive |
| |
| RUN apt-get update && apt-get install -y wget software-properties-common default-jdk |
| |
| COPY set-java.sh /usr/bin/ |
| |
| RUN apt-get update && apt-get install -y \ |
| maven \ |
| openssh-server \ |
| curl \ |
| git-core \ |
| xvfb \ |
| python-dev \ |
| python-pip \ |
| python-yaml \ |
| python-jenkins \ |
| ant \ |
| autoconf \ |
| automake \ |
| xsltproc \ |
| zip \ |
| vim \ |
| gettext-base \ |
| && rm -rf /var/lib/apt/lists/* |
| |
| |
| RUN [ "$DEBIAN_VER" != "jessie" ] || \ |
| ( echo "deb http://http.debian.net/debian jessie-backports main" > /etc/apt/sources.list.d/jessie-backports.list && \ |
| apt-get update && \ |
| apt-get install -y -t jessie-backports openjdk-8-jdk && \ |
| apt-get install -y -t jessie-backports git && \ |
| update-java-alternatives -s java-1.8.0-openjdk-amd64 && \ |
| mv /etc/apt/sources.list.d/jessie-backports.list /etc/apt/sources.list.d/jessie-backports.list.disabled && \ |
| apt-get update && \ |
| rm -rf /var/lib/apt/lists/* ) |
| |
| RUN useradd jenkins -d /home/jenkins -m -s /bin/bash |
| RUN mkdir /home/jenkins/.ssh |
| RUN chown -R jenkins:jenkins /home/jenkins/.ssh |
| RUN chmod -R 700 /home/jenkins/.ssh |
| |
| COPY id_rsa.pub /home/jenkins/.ssh/authorized_keys |
| RUN chown jenkins:jenkins /home/jenkins/.ssh/authorized_keys |
| |
| COPY gitconfig $JENKINS_REF/.gitconfig |
| |
| RUN mkdir /var/run/sshd |
| RUN echo 'root:screencast' | chpasswd |
| RUN sed -i 's/PermitRootLogin without-password/PermitRootLogin yes/' /etc/ssh/sshd_config |
| |
| # SSH login fix. Otherwise user is kicked off after login |
| 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 |
| |
| # Allow Android SDK tools to run on a 64-bit system, see |
| # http://stackoverflow.com/a/23201209/1127485 |
| RUN apt-get update && apt-get install -y lib32stdc++6 lib32z1 |
| |
| RUN /etc/init.d/ssh start |
| |
| EXPOSE 22 |
| CMD ["/usr/sbin/sshd", "-e", "-D"] |