Skip to content

Commit

Permalink
added fedora39
Browse files Browse the repository at this point in the history
  • Loading branch information
ralequi committed Sep 6, 2023
1 parent 15f28ba commit 72b9cae
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
dockername: [fedora37, fedora38]
dockername: [fedora37, fedora38, fedora39]
include:
- dockername: "fedora38"
extratags: ", naudit/rpm-builder:latest"
Expand Down
48 changes: 48 additions & 0 deletions Dockerfile.fedora39
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
FROM fedora:39

# Install base packages
RUN dnf install -y \
bash \
coreutils \
curl \
diffutils \
gcc \
git \
make \
patch \
python \
rpm-build \
rpm-devel \
rpmdevtools \
rpmlint \
wget \
&& dnf clean all \
&& rm -rf /var/cache/dnf

# Install rpm macros
RUN dnf install -y \
cmake-rpm-macros.noarch \
fedora-rpm-macros \
go-rpm-macros \
kernel-rpm-macros \
lua-rpm-macros \
lua-rpm-macros \
pyproject-rpm-macros \
python-rpm-macros \
python-srpm-macros \
python3-rpm-macros \
systemd-rpm-macros \
typelib-srpm-macros \
&& dnf clean all \
&& rm -rf /var/cache/dnf

# Install rpm macros for python development
RUN dnf install -y \
dnf-plugins-core \
python3-devel \
python3-rpm-macros \
python3-setuptools_scm+toml \
python3-wheel \
&& dnf clean all \
&& rm -rf /var/cache/dnf

0 comments on commit 72b9cae

Please sign in to comment.