Skip to content

Commit

Permalink
smaller rpm build docker containers; ref #948
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc committed Sep 2, 2024
1 parent e3e34c4 commit 1dc22e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/docker/Dockerfile.el9
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ COPY packaging/redhat/python-apprise.spec /
# Place our build file into the path
COPY bin/build-rpm.sh /usr/bin
RUN rpmspec -q --buildrequires /python-apprise.spec | cut -f1 -d' ' | \
xargs dnf install -y
xargs dnf install -y && dnf clean all

# RPM Build Structure Setup
ENV FLAVOR=rpmbuild OS=centos DIST=el9
Expand Down
2 changes: 1 addition & 1 deletion test/docker/Dockerfile.f37
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
# Place our build file into the path
COPY bin/build-rpm.sh /usr/bin
RUN rpmspec -q --buildrequires /python-apprise.spec | cut -f1 -d' ' | \
xargs dnf install -y
xargs dnf install -y && dnf clean all

# RPM Build Structure Setup
ENV FLAVOR=rpmbuild OS=centos DIST=el8
Expand Down
2 changes: 1 addition & 1 deletion test/docker/Dockerfile.f39
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
# Place our build file into the path
COPY bin/build-rpm.sh /usr/bin
RUN rpmspec -q --buildrequires /python-apprise.spec | cut -f1 -d' ' | \
xargs dnf install -y
xargs dnf install -y && dnf clean all

# RPM Build Structure Setup
ENV FLAVOR=rpmbuild OS=centos DIST=f39
Expand Down

0 comments on commit 1dc22e1

Please sign in to comment.