FROM ubuntu:trusty # Setting WORKDIR and USER USER docker WORKDIR /app # Copy the current directory contents into the container at /app ADD . /app # Make port 80 available to the world outside this container EXPOSE 80 # Define environment variable ENV NAME gitfusion # Run app.py when the container launches CMD ["bash", "gf.sh"]