mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
As said [in the documentation](https://docs.fedoraproject.org/en-US/packaging-guidelines/Scriptlets/#_dependencies_on_the_systemd_package):
> If the package wants to use systemd tools if they are available, but does not
want to declare a dependency, then the `%{?systemd_ordering}` macro MAY be used
as a weaker form of %{?systemd_requires} that only declares an ordering during
an RPM transaction.
See 2424b6bd71
and https://pagure.io/packaging-committee/issue/644 for more information.
And also use `--setopt=install_weak_deps=False` to avoid installing a lot of
useless dependencies.
17 lines
829 B
Docker
17 lines
829 B
Docker
FROM golang:1 AS build
|
|
ENV CGO_ENABLED=0
|
|
ADD . /go/src/app
|
|
WORKDIR /go/src/app
|
|
RUN make miniflux
|
|
|
|
FROM rockylinux:9
|
|
RUN dnf install --setopt=install_weak_deps=False -y rpm-build systemd-rpm-macros
|
|
RUN mkdir -p /root/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
|
|
RUN echo "%_topdir /root/rpmbuild" >> .rpmmacros
|
|
COPY --from=build /go/src/app/miniflux /root/rpmbuild/SOURCES/miniflux
|
|
COPY --from=build /go/src/app/LICENSE /root/rpmbuild/SOURCES/
|
|
COPY --from=build /go/src/app/ChangeLog /root/rpmbuild/SOURCES/
|
|
COPY --from=build /go/src/app/miniflux.1 /root/rpmbuild/SOURCES/
|
|
COPY --from=build /go/src/app/packaging/systemd/miniflux.service /root/rpmbuild/SOURCES/
|
|
COPY --from=build /go/src/app/packaging/miniflux.conf /root/rpmbuild/SOURCES/
|
|
COPY --from=build /go/src/app/packaging/rpm/miniflux.spec /root/rpmbuild/SPECS/miniflux.spec
|