Dear Support,
for the questions
What is the command to build an image using a
Dockerfile.devfile under path/opt/myappwith the namewebapp. The current directory you are in is/tmp.
the answer given is
docker build -f /opt/myapp/Dockerfile.dev /opt/myapp -t webapp
is it not the correct answer be
docker build -f /opt/myapp/Dockerfile.dev -t webapp
rather than which given