xxxxxxxxxx
# Whats a Docker File?
A Dockerfile is a text document that contains all the commands you would
normally execute manually in order to build a Docker image. Docker can build
images automatically by reading the instructions from a Dockerfile.
xxxxxxxxxx
# getting base image from ubuntu
FROM ubuntu:18.04
RUN apt-get update
CMD ["echo", "HEY from docker image"]