WORKDIR instructions should be used with an absolute path for clarity and reliability.
The WORKDIR instruction defines the working directory for any RUN, CMD, ENTRYPOINT,
COPY, and ADD instructions that follow in the Dockerfile.
Using absolute paths helps to avoid any confusion or
unexpected behavior that could arise, for example after changing the current directory in one of the previous instructions.
WORKDIR my_working_folder WORKDIR .\\my_working_folder
WORKDIR /images/my_working_folder WORKDIR C:\\images\\my_working_folder
WORKDIR instruction should be used instead of cd commands