Testing dynamic Jenkinsfile

This commit is contained in:
retropikzel 2025-06-05 22:34:20 +03:00
parent f6f84a61c8
commit 15980724d4
2 changed files with 8 additions and 3 deletions

View File

@ -1,2 +1,2 @@
FROM docker:dind
RUN apk add make gzip
FROM debian:bookworm
RUN apt-get update && apt-get install -y make docker.io

7
Jenkinsfile vendored
View File

@ -1,7 +1,12 @@
def tests = ['primitives']
pipeline {
agent any
agent {
dockerfile {
filename 'Dockerfile.jenkins'
args '--user=root -v /var/run/docker.sock:/var/run/docker.sock'
}
}
options {
disableConcurrentBuilds()