schedule · 2 min read
Dockerfile - Use WORKDIR the right way
WORKDIR instruction in a Dockerfile The WORKDIR instruction sets the current working directory for any RUN, CMD, ENTRYPOINT, COPY and ADD instructions. If the WORKDIR doesn’t exist, it will be created automatically. In simple words, It runs a mkdir ...