diff --git a/Dockerfile.cockpit b/Dockerfile.cockpit new file mode 100644 index 0000000..df69a50 --- /dev/null +++ b/Dockerfile.cockpit @@ -0,0 +1,11 @@ +FROM ubuntu:18.04 + +RUN apt-get update + +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install cockpit +RUN apt-get install -y cockpit cockpit-docker + diff --git a/Dockerfile.cockpit b/Dockerfile.cockpit new file mode 100644 index 0000000..df69a50 --- /dev/null +++ b/Dockerfile.cockpit @@ -0,0 +1,11 @@ +FROM ubuntu:18.04 + +RUN apt-get update + +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install cockpit +RUN apt-get install -y cockpit cockpit-docker + diff --git a/Jenkinsfile b/Jenkinsfile index 7570d3d..42a309b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,6 +10,7 @@ sh 'docker build --tag linux-build-agent ./ -f Dockerfile.build.linux' sh 'docker build --tag windows-build-agent ./ -f Dockerfile.build.windows' sh 'docker build --tag macosx-build-agent ./ -f Dockerfile.build.macosx' + sh 'docker build --tag cockpit ./ -f Dockerfile.cockpit' } } }