Initial commit
This commit is contained in:
18
ci/Dockerfile
Normal file
18
ci/Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
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 \
|
||||
rsync \
|
||||
squashfs-tools \
|
||||
tar \
|
||||
unzip \
|
||||
util-linux \
|
||||
&& dnf clean all
|
||||
Reference in New Issue
Block a user