19 lines
685 B
Docker
19 lines
685 B
Docker
FROM fedora:30
|
|
|
|
RUN dnf install -y createrepo https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm 'dnf-command(copr)' findutils rsync
|
|
RUN dnf copr -y enable johnseekins/sway
|
|
RUN dnf copr -y enable @sway-sig/sway-desktop
|
|
RUN dnf copr -y enable taw/Riot
|
|
RUN dnf copr -y enable abn/throttled
|
|
RUN dnf copr -y enable dgoerger/workstation
|
|
RUN dnf copr -y enable jmiven/gajim-omemo
|
|
RUN dnf clean all
|
|
|
|
VOLUME [/data]
|
|
VOLUME [/rpmfusion]
|
|
ENV PACKAGES=""
|
|
|
|
COPY run.sh /entrypoint.sh
|
|
COPY repos/*.repo /etc/yum/repos.d/
|
|
ENTRYPOINT ["/entrypoint.sh"]
|