2024-04-17 22:16:59 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
2024-05-12 13:19:01 +02:00
|
|
|
FROM --platform=${TARGETPLATFORM} openmamba/openmamba:latest
|
|
|
|
RUN dnf update --nogpgcheck -y
|
2024-04-17 22:16:59 +02:00
|
|
|
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" ]
|