In my docker file I have this command to create directories :
RUN mkdir -p logs/{shell,security,errors}
However, it ends up creating these on my container :
{shell,security,errors}
How can I create directories without also including the curly braces?