4 lines
91 B
Docker
4 lines
91 B
Docker
FROM almalinux:latest
|
|
RUN dnf install -y httpd
|
|
CMD [ "/usr/sbin/httpd", "-DFOREGROUND" ]
|