# syntax=docker/dockerfile:1 FROM openmamba/openmamba:latest RUN dnf update --nogpgcheck RUN dnf install --nogpgcheck -y dnf-plugins-core iputils tar sudo openmamba-unstable-repos autodist apache RUN dnf config-manager --set-enabled unstable-makedist COPY rootfiles/ / RUN dnf install --nogpgcheck -y $(cat /root/builddeps) EXPOSE 80 CMD [ "apachectl", "-D", "FOREGROUND" ]