Skip to content
Snippets Groups Projects
Dockerfile 384 B
Newer Older
  • Learn to ignore specific revisions
  • Marica Antonacci's avatar
    Marica Antonacci committed
    FROM jenkins/ssh-agent
    
    ARG ORCHENT_VERSION=1.2.9.rc1
    
    RUN DEBIAN_FRONTEND=noninteractive apt-get update \
        && apt-get install -y wget git ansible \
        && wget https://github.com/indigo-dc/orchent/releases/download/v${ORCHENT_VERSION}/orchent_${ORCHENT_VERSION}_amd64.deb \
        && dpkg -i orchent_${ORCHENT_VERSION}_amd64.deb \
        && apt-get clean && rm -rf /var/lib/apt/lists/*