We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5bcd08 commit b87efd8Copy full SHA for b87efd8
Dockerfile-9.x
@@ -30,7 +30,8 @@ RUN dnf install -y \
30
31
# EPEL: needs epel-release installed first
32
RUN dnf install -y \
33
- epel-rpm-macros
+ epel-rpm-macros \
34
+ almalinux-git-utils
35
36
# Niceties
37
files/init-container.sh
@@ -82,6 +82,12 @@ if [ -n "$BUILD_LOCAL" ]; then
82
fi
83
echo "Found specfiles $specs"
84
85
+ case "$OS_RELEASE" in
86
+ 8.2.*|8.3.*) ;; # sources always available via git-lfs
87
+ 8.99.*|9.*) if [ -r sources ]; then alma_get_sources -i sources; fi ;;
88
+ *) echo >&2 "ERROR: unknown release, cannot know package manager"; exit 1 ;;
89
+ esac
90
+
91
sudo $BDEP -y $specs
92
RPMBUILDFLAGS=(
93
-ba $specs
0 commit comments