11 lines
484 B
Docker
11 lines
484 B
Docker
FROM jenkins/jenkins:lts
|
|
USER root
|
|
RUN echo 'deb-src http://ftp.us.debian.org/debian/ stretch main non-free contrib' >> /etc/apt/sources.list
|
|
RUN apt-get -y update
|
|
RUN apt-get -y upgrade
|
|
RUN apt-get -y install patch build-essential rsync
|
|
RUN apt-get -y build-dep sqlcipher libdbd-sqlite3-perl debhelper
|
|
RUN apt-get -y install libvirt-clients libvirt0 libjna-java
|
|
COPY libvirt-java_0.5.1_all.deb /tmp/libvirt-java_0.5.1_all.deb
|
|
RUN dpkg -i /tmp/libvirt-java_0.5.1_all.deb
|
|
USER jenkins
|