Dockerfile
Learn which instructions can be used in Dockerfile.
We'll cover the following...
Dockerfile
A Dockerfile is a plain-text file describing the steps to build an image, typically for your own application. To build a Docker image from a Dockerfile in the current directory, enter:
docker image build -t <image_name> .
The period at the end of the command references ...