Your working directory contains a Dockerfile and a demo.txt file.
FROM ubuntu:22.04
LABEL author=HyperUser
ENV HOST_FILE=demo.txt
ENV IMAGE_DESTINATION="/tmp"
COPY HOST_FILE IMAGE_DESTINATION
ENTRYPOINT ["ls", "/tmp"]What will happen when you run docker build -t ubuntu:v1 . command?