mirror of
https://github.com/xcat2/xcat-core.git
synced 2026-04-04 16:06:26 +00:00
11 lines
468 B
Docker
11 lines
468 B
Docker
ARG RELEASEVER=9
|
|
FROM quay.io/rockylinux/rockylinux:${RELEASEVER}-ubi-init
|
|
|
|
RUN dnf install -y epel-release
|
|
RUN dnf config-manager --set-enabled epel crb
|
|
RUN dnf makecache
|
|
RUN dnf install -y hostname perl perl-core perl-generators iproute net-tools bind-utils openssh-clients python3 perl-Net-IP perl-Sys-Syslog wget perl-IO perl-File-Copy perl-File-Basename perl-File-Slurper perl-Parallel-ForkManager perl-JSON perl-Data-Dumper
|
|
RUN dnf clean all
|
|
|
|
WORKDIR /workspace
|