ci: Add CI pipeline
All checks were successful
dustin/metricspi/pipeline/head This commit looks good
All checks were successful
dustin/metricspi/pipeline/head This commit looks good
This commit is contained in:
25
ci/Dockerfile
Normal file
25
ci/Dockerfile
Normal file
@@ -0,0 +1,25 @@
|
||||
FROM registry.fedoraproject.org/fedora:30
|
||||
|
||||
ARG UID
|
||||
ARG GID
|
||||
|
||||
RUN groupadd -g ${GID} jenkins \
|
||||
&& useradd -u ${UID} -g ${GID} -m -d /var/lib/jenkins -l jenkins
|
||||
|
||||
RUN dnf install -y \
|
||||
bc \
|
||||
bzip2 \
|
||||
cpio \
|
||||
diffutils \
|
||||
g++ \
|
||||
gcc \
|
||||
make \
|
||||
ncurses-devel \
|
||||
openssh-clients \
|
||||
patch \
|
||||
perl-ExtUtils-MakeMaker \
|
||||
perl-Thread-Queue \
|
||||
rsync \
|
||||
wget \
|
||||
which \
|
||||
&& dnf clean all
|
||||
Reference in New Issue
Block a user