16 lines
322 B
Text
16 lines
322 B
Text
|
|
|
||
|
|
|
||
|
|
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 .
|