FROM [initializes a new build stage and sets the base image for subsequent instructions]
RUN [execute any commands to create a new layer on top of the current image]
CMD [sets the command to be executed when running a container from an image]
docker build -f <name>.Dockerfile -t <tag-list>
docker run --rm httpie