Skip to content
Snippets Groups Projects
Select Git revision
  • 7c9f22bbaf5cfce77dacd14ff47584a6684b92c4
  • main default protected
  • doc
  • createDoc
  • modele_document
  • release
6 results

app.js

Blame
  • DockerfileJenkins 858 B
    FROM jenkins/jenkins:2.263.4-lts-jdk11
    USER root
    RUN apt-get update && apt-get install -y apt-transport-https \
           ca-certificates curl gnupg2 \
           software-properties-common
    RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
    RUN apt-key fingerprint 0EBFCD88
    RUN add-apt-repository \
           "deb [arch=amd64] https://download.docker.com/linux/debian \
           $(lsb_release -cs) stable"
    RUN VERSION=$(curl --silent "https://api.github.com/repos/goodwithtech/dockle/releases/latest" | grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/') && curl -L -o dockle.deb https://github.com/goodwithtech/dockle/releases/download/v${VERSION}/dockle_${VERSION}_Linux-64bit.deb
    RUN dpkg -i dockle.deb && rm dockle.deb
    RUN apt-get update && apt-get install -y wget docker-ce-cli
    USER jenkins
    RUN jenkins-plugin-cli --plugins blueocean:1.24.4