1
0
Fork 0

ci: Use Dockerfile to define build environment

The basic Jenkins agent does not have the *python3-wheel* package
installed, which is required to fetch the dependencies for this web
application. Thus, a specific environment has to be defined that
includes all of the required tools.
Dustin 2018-07-26 18:45:15 -05:00
parent f498065b17
commit 2e40cc5f12
2 changed files with 11 additions and 1 deletions

6
ci/Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM fedora
RUN dnf install -y \
openssh-clients \
python3-wheel \
rsync

6
ci/Jenkinsfile vendored
View File

@ -1,5 +1,9 @@
pipeline {
agent any
agent {
dockerfile {
dir 'ci'
}
}
triggers {
pollSCM ''