FROM ubuntu RUN apt-get -y update Set the application directory WORKDIR /wordpress ADD Scripts/WordPress/install.sh /wordpress/install.sh Make port 80 available EXPOSE 80 #Define command to be run when launching the container CMD ["/bin/sh", wordpress]