Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Dockerfile 552 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  1. FROM jenkins/jenkins:latest
  2. USER root
  3. RUN apt-get update && apt-get install -y --no-install-recommends \
  4. apt-transport-https \
  5. ca-certificates curl gnupg2 \
  6. software-properties-common
  7. RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
  8. RUN apt-key fingerprint 0EBFCD88
  9. RUN add-apt-repository \
  10. "deb [arch=amd64] https://download.docker.com/linux/debian \
  11. $(lsb_release -cs) stable"
  12. RUN apt-get update && apt-get install -y docker-ce-cli
  13. USER jenkins
  14. RUN jenkins-plugin-cli --plugins blueocean
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...