-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! dbld: add almalinux-9 as distro
- Loading branch information
Showing
3 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
FROM almalinux:9 | ||
LABEL maintainer="Laszlo Varady <laszlo.varady@axoflow.com>, Balazs Scheidler <balazs.scheidler@axoflow.com>" | ||
ENV OS_DISTRIBUTION=almalinux | ||
ENV OS_DISTRIBUTION_CODE_NAME=9 | ||
|
||
ARG ARG_IMAGE_PLATFORM | ||
ARG COMMIT | ||
ENV IMAGE_PLATFORM ${ARG_IMAGE_PLATFORM} | ||
LABEL COMMIT=${COMMIT} | ||
|
||
COPY images/entrypoint.sh / | ||
COPY . /dbld/ | ||
|
||
RUN /dbld/builddeps install_dbld_dependencies | ||
RUN /dbld/builddeps add_epel_repo | ||
RUN /dbld/builddeps add_copr_repo | ||
RUN /dbld/builddeps install_yum_packages | ||
RUN /dbld/builddeps install_rpm_build_deps | ||
|
||
RUN /dbld/builddeps install_criterion | ||
|
||
VOLUME /source | ||
VOLUME /build | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
BUILDER_IMAGES= \ | ||
almalinux-8 \ | ||
almalinux-9 \ | ||
fedora-39 \ | ||
debian-stretch \ | ||
debian-bullseye \ | ||
|