create docker file code example
Example 1: docker create
docker create [options] IMAGE
-a, --attach
-i, --interactive
-t, --tty
--name NAME
-p, --publish 5000:5000
--expose 5432
-P, --publish-all
--link container:alias
-v, --volume `pwd`:/app
-e, --env NAME=hello
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 -
Example 4: dockerfile run app cmd
RUN apt-get install python3
CMD echo "Hello world"
ENTRYPOINT echo "Hello world"