Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (16 loc) · 562 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 562 Bytes

EVRY FS python builder image

Docker Repository on Quay

This image is used to build python packages and new container images within the pipeline.

Usage

To execute your pipeline within this image, add this to your Jenkinsfile:

pipeline {
  agent {
    label 'docker'
    docker {
      image 'evryfs/base-python-builder:3.6'
      args '-v /var/run/docker.sock:/var/run/docker.sock'
    }
  }
}