java-tutorials/podman/Dockerfile
2019-12-10 06:27:41 +05:30

5 lines
101 B
Docker

FROM centos:latest
RUN yum -y install httpd
CMD ["/usr/sbin/httpd", "-D", "FOREGROUND"]
EXPOSE 80