eris/packaging/Dockerfile.fedora
Andrew Hamilton 6ead327cef packaging: Pin dockerfile distro versions and fix installations
- Remove unrar since its not in debian (only in non-free)
- Use 7zip instead of p7zip, and executable 7zz instead of 7za
2024-03-10 21:37:05 +10:00

15 lines
325 B
Text

FROM fedora:38
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 .