Initial commit

This commit is contained in:
2019-08-12 22:52:44 +02:00
commit 9c1fe35be7
7 changed files with 83 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
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"]