FROM ubuntu RUN apt-get update \ && apt-get install -y apache2 COPY html/* /var/www/html/ WORKDIR /var/www/html CMD ["apachectl", "-D", "FOREGROUND"] EXPOSE 80
FROM ubuntu RUN apt-get update \ && apt-get install -y apache2 COPY html/* /var/www/html/ WORKDIR /var/www/html CMD ["apachectl", "-D", "FOREGROUND"] EXPOSE 80