openmamba-docker-buildvm/Dockerfile
2024-04-17 22:16:59 +02:00

10 lines
374 B
Docker

# 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" ]