mirror of
https://github.com/gwebu-team/profile.d.git
synced 2025-12-07 11:55:48 +00:00
Some checks failed
Makefile CI / build (push) Has been cancelled
Add how to release notes.
16 lines
280 B
Text
16 lines
280 B
Text
FROM rockylinux:9 as build
|
|
|
|
WORKDIR /root/profile.d
|
|
|
|
COPY ./ .
|
|
|
|
# dnf -y update && \
|
|
RUN \
|
|
dnf -y install rpmdevtools make && \
|
|
dnf -y clean all
|
|
|
|
# dnf -y install dnf-plugins-core epel-release && \
|
|
# /usr/bin/crb enable && \
|
|
# dnf -y clean all
|
|
|
|
RUN ./build.sh
|