1
0
Fork 0

Compare commits

...

1 Commits

Author SHA1 Message Date
Dustin 69791e6784 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.
2018-07-26 18:53:23 -05:00
2 changed files with 12 additions and 1 deletions

7
ci/Dockerfile Normal file
View File

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

6
ci/Jenkinsfile vendored
View File

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