MKDIR fails on dockerfile

I’m just starting out with docker and building containers and pushing to AWS.

FROM node:9.10-slim

RUN mkdir p ~/test
ADD . ~/test

WORKDIR ~/test

CMD [“node”, “server”]

The mkdir never works, I must be doing something pretty stupid. Sorry for the newbie question

Thanks

Missing a hyphen on the p option?

RUN mkdir -p ~/test