Skip to content

Commit

Permalink
Added el10b based on AlmaLinux 10 Kitten
Browse files Browse the repository at this point in the history
  • Loading branch information
mfeit-internet2 committed Nov 26, 2024
1 parent 7306549 commit 6d9da0f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ 'ol8', 'el9', 'd11', 'd12', 'u20', 'u22', 'u24' ]
os: [ 'ol8', 'el9', 'el10b', 'd11', 'd12', 'u20', 'u22', 'u24' ]

runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
# https://github.com/docker/build-push-action
- name: Build and push Docker images
id: build-and-push
if: ${{ matrix.os == 'ol8'|| matrix.os == 'el9' }}
if: ${{ matrix.os == 'ol8'|| matrix.os == 'el9' || matrix.os == 'el10b' }}
uses: docker/build-push-action@v3
with:
context: .
Expand Down
21 changes: 21 additions & 0 deletions docker-envs/Dockerfile-el10b
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FROM almalinux:109-kitten AS unibuild-image

#Install pre-requisites
#Install utils like tree useful for debugging
#Enable powertools since contains common dependencies
RUN microdnf install -y dnf \
&& dnf update -y \
&& dnf install -y rpm rpm-build rpmdevtools m4 make sudo dnf-plugins-core epel-release tree \
&& dnf config-manager --enable crb

#Copy unibuild source
COPY . /usr/share/unibuild/

#Install unibuild
WORKDIR /usr/share/unibuild
RUN make RELEASE=1
RUN /usr/share/unibuild/libexec/prep/prep

#Shared volume for code to build
VOLUME /app
WORKDIR /app

0 comments on commit 6d9da0f

Please sign in to comment.