-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker file needs to be updated #35
Comments
Try my image that I created:
|
@devopsjourney1 Your image on Docker Hub does not install all plugins, at least with me. With the change of @TapiwaChikwenya everything runs without problems. |
just change |
Our simply update to the latest version (up today: 2.414.2) |
Thank you all for the input. I have updated the Dockerfile to 2.414.2 Usually my videos pin a version instead of using |
docker file needs to be upadated to point to latest version of jenkins.
FROM jenkins/jenkins:lts-jdk11
USER root
RUN apt-get update && apt-get install -y lsb-release
RUN curl -fsSLo /usr/share/keyrings/docker-archive-keyring.asc
https://download.docker.com/linux/debian/gpg
RUN echo "deb [arch=$(dpkg --print-architecture)
signed-by=/usr/share/keyrings/docker-archive-keyring.asc]
https://download.docker.com/linux/debian
$(lsb_release -cs) stable" > /etc/apt/sources.list.d/docker.list
RUN apt-get update && apt-get install -y docker-ce-cli
USER jenkins
Update the Blue Ocean plugin version to the latest available
RUN jenkins-plugin-cli --plugins "blueocean:latest docker-workflow:1.28"
The text was updated successfully, but these errors were encountered: