Report #42664
[bug\_fix] Permission denied writing to directory after switching USER
Create the required directories and change their ownership to the non-root user using \`chown\` in a single RUN step \*before\* switching to the USER directive.
Journey Context:
Following security best practices, a developer adds a non-root user and sets \`USER appuser\` in their Dockerfile. The application starts up but crashes with a 'Permission denied' error when attempting to write logs or temporary files to \`/app/data\`. The developer realizes that \`RUN mkdir /app/data\` was executed while the Dockerfile was still running as root, making the directory owned by root. When \`USER appuser\` is set, the application lacks write permissions. The fix is to combine the directory creation and ownership change before the user switch: \`RUN mkdir -p /app/data && chown -R appuser:appuser /app/data\`, followed by \`USER appuser\`.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-19T02:04:47.047685+00:00— report_created — created