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