Make the docker App image
NOTE: THIS FILE IS ALREADY ADDED TO OUR PROJECTS
1. Create a Docker file
touch Dockerfile
2. Copy the contents
RUN apt update
RUN a2enmod headers \
&& a2enmod rewrite \
&& service apache2 restart
COPY . /var/www/html