20 lines
344 B
Docker
20 lines
344 B
Docker
FROM registry.fedoraproject.org/fedora:35
|
|
|
|
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 \
|
|
findutils \
|
|
make \
|
|
openssh-clients \
|
|
python3-pip \
|
|
rsync \
|
|
squashfs-tools \
|
|
tar \
|
|
unzip \
|
|
util-linux \
|
|
&& dnf clean all
|