Files
metricspi/ci/Dockerfile
Dustin C. Hatch e009a4e167
All checks were successful
dustin/metricspi/pipeline/head This commit looks good
ci: Install git
The `git` program is needed to build *blackbox_exporter* from Go source.
2022-08-07 10:18:36 -05:00

28 lines
451 B
Docker

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 \
git \
make \
ncurses-devel \
openssh-clients \
patch \
perl-ExtUtils-MakeMaker \
perl-Thread-Queue \
rsync \
systemd \
wget \
which \
&& dnf clean all