Some checks failed
andreas-personal/good-old-jenkins/pipeline/head There was a failure building this commit
18 lines
424 B
Docker
18 lines
424 B
Docker
FROM jenkins/jenkins:alpine-jdk21
|
|
|
|
USER root
|
|
RUN addgroup --gid 281 docker
|
|
RUN addgroup jenkins docker
|
|
|
|
# Install tea
|
|
RUN apk add --no-cache tea
|
|
|
|
COPY --chown=jenkins:jenkins executors.groovy /usr/share/jenkins/ref/init.groovy.d/executors.groovy
|
|
|
|
# Install jenkins plugins
|
|
USER jenkins
|
|
RUN jenkins-plugin-cli --plugins "blueocean docker-workflow"
|
|
|
|
#Install git lfs
|
|
RUN apk add --no-cache git-lfs
|
|
RUN git lfs install --system |