docke build code example
Example 1: docker build
docker build -t [tag] .
Example 2: dockerfile example
FROM ubuntu:18.04
COPY . /app
RUN make /app
CMD python /app/app.py
Example 3: how to create docker image from custom filename
cat DockerFile.debian.foo | docker build -t debian.foo -