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