packaging: Let eris install on Fedora distributions

This commit is contained in:
Andrew Hamilton 2023-09-18 00:05:03 +10:00
parent 13345232d9
commit d5122f833a
8 changed files with 42 additions and 26 deletions

View file

@ -0,0 +1,15 @@
FROM fedora
RUN dnf -y install python3.11 python3-pip pipx gcc python3.11-devel
COPY . eris
RUN PIPX_BIN_DIR=/bin pipx install --system-site-packages ./eris/eris
RUN chmod a+rwx -R /root
RUN dnf -y install sudo
RUN eris --install-all-tools
ENTRYPOINT ["eris"]
# docker build -t eris -f packaging/Dockerfile.fedora .