Docker's fixed the issue with WORKDIR ignoring USER when creating directories. Prior to this fix, if you did this, you'd get access denied: ```Dockerfile USER node WORKDIR /app RUN touch /app/makfile ``` Today, you can it and the file would get created. - [x] add a written lecture explaining the change - [ ] replace the lecture video for [Working With Node User Limits](https://www.udemy.com/course/docker-mastery-for-nodejs/learn/lecture/14274050) - [x] update answer in this repository [Original Q&A](https://www.udemy.com/course/docker-mastery-for-nodejs/learn/#questions/14269760/)
Docker's fixed the issue with WORKDIR ignoring USER when creating directories.
Prior to this fix, if you did this, you'd get access denied:
Today, you can it and the file would get created.
Original Q&A