WORKDIR
Workdir, short for working directory, refers to the directory that a process uses as its current location for resolving relative file paths. The working directory is part of a program’s runtime state and can influence how programs locate files, read resources, and write outputs. It is distinct from the file system root and from other processes’ directories.
In most operating systems, relative paths are resolved with reference to the current working directory. Users
Each process has its own working directory; child processes inherit the parent’s working directory at creation
In containerization and build systems, the term is commonly used in reference to a specific directive or