Skip to content

Instantly share code, notes, and snippets.

View rranjith406's full-sized avatar

Ranjith R rranjith406

View GitHub Profile
@rranjith406
rranjith406 / Dockerfile-jenkins
Created June 2, 2021 15:14 — forked from ohanetz/Dockerfile-jenkins
Utilize Jenkins in an auto-scaling Kubernetes deployment on Amazon EKS
FROM jenkins/jenkins:2.204.5
RUN /usr/local/bin/install-plugins.sh ssh-slaves
RUN /usr/local/bin/install-plugins.sh kubernetes
USER root
RUN apt-get update && apt-get install -y maven
USER jenkins