mirror of
https://github.com/gwebu-team/profile.d.git
synced 2025-12-10 20:55:46 +00:00
15 lines
231 B
Text
15 lines
231 B
Text
|
|
FROM rockylinux:9 as build
|
||
|
|
|
||
|
|
WORKDIR /root/profile.d
|
||
|
|
|
||
|
|
COPY ./ .
|
||
|
|
|
||
|
|
RUN \
|
||
|
|
dnf -y update && \
|
||
|
|
dnf -y install rpmdevtools make
|
||
|
|
|
||
|
|
# dnf -y install dnf-plugins-core epel-release && \
|
||
|
|
# /usr/bin/crb enable && \
|
||
|
|
|
||
|
|
RUN ./build.sh
|