-
-
Save michaelneale/f84657a7fc6575e761a8df9de03f51df to your computer and use it in GitHub Desktop.
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 ubuntu:16.04 | |
RUN apt-get update | |
RUN apt-get install -y git | |
RUN apt-get install -y libxml2-utils | |
RUN apt-get install -y default-jdk | |
RUN apt-get install -y maven | |
RUN apt-get install -y firefox=45.0.2+build1-0ubuntu1 | |
RUN apt-get install -y xvfb | |
RUN apt-get install -y curl wget | |
RUN curl -sL https://deb.nodesource.com/setup_5.x | bash - | |
RUN apt-get install -y nodejs | |
RUN apt-get install -y build-essential | |
RUN apt-get install -y libssl-dev | |
ENV JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/ | |
ENV [email protected] | |
ENV GIT_COMMITTER_NAME=Hates | |
ENV GIT_AUTHOR_NAME=Cake | |
ENV [email protected] | |
RUN git clone --depth 1 https://github.com/jenkinsci/blueocean-plugin.git | |
RUN git clone --depth 1 https://github.com/jenkinsci/blueocean-acceptance-test.git | |
RUN cd blueocean-plugin && mvn install -DskipTests | |
RUN cd blueocean-acceptance-test && mvn install -DskipTests | |
RUN export DISPLAY=:1 && Xvfb :1 & cd blueocean-acceptance-test && ./run.sh -a=../blueocean-plugin/blueocean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment