Fix COPY of .vimrc, today I learned that /root is the root users home dir.

This commit is contained in:
jkaplon 2015-10-07 10:52:52 -04:00
parent 7129f10f56
commit 0ab6af8e57

View File

@ -9,7 +9,7 @@ VOLUME ["/usr/src/app/db"]
RUN npm install -g nodemon
RUN apt-get update && apt-get install -y vim git
COPY .vimrc ~/.vimrc
COPY .vimrc /root/.vimrc
COPY package.json /usr/src/app/
RUN npm install