I have followed the instructions for the Final DevOps project in regards to the Certification project. However, I am stuck on the the following step: Use the image devopsedu/webapp and add your PHP website to it using a Dockerfile
FROM devopsedu/webapp
ADD proj /var/www/html
RUN rm /var/www/html/index.html
CMD apachectl -D FOREGROUND
I have created the Dockerfile as suggested from the various topics on the site and I still get errors
root@devops-project:/home/images# docker build -t myimage:latest .
Sending build context to Docker daemon 2.048kB
Step 1/4 : FROM devopsedu/webapp
---> 0ef91240e173
Step 2/4 : ADD proj /var/www/html
ADD failed: stat /var/lib/docker/tmp/docker-builder832271093/proj: no such file or directory
I have connected the git repository and fetched the changes to my server and still unable to connect. I do not know how to proceed. When I check the /var/www/html directory it states that this directory does not exist.