StacksJar
Made with π by Arif Shaikh with all Passion.
To create a Directory that does not exist you have to use the --p command along with the mkdir command. Becausemkdir
isn't recursive by default -- it expects the immediate parent directory to exist.
Use mkdir command to with --p flag to
mkdir -p /var/www/app
Or
RUN mkdir -p ...