cmd

PHOTO EMBED

Tue Oct 10 2023 18:12:04 GMT+0000 (Coordinated Universal Time)

Saved by @ishwarshinde041 #html

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
content_copyCOPY