5 lines
101 B
Docker
Raw Normal View History

2019-12-10 06:27:41 +05:30
FROM centos:latest
RUN yum -y install httpd
CMD ["/usr/sbin/httpd", "-D", "FOREGROUND"]
EXPOSE 80