Окончено внедрение докера для развёртывания dev-окружения

This commit is contained in:
ErickSkrauch 2016-05-10 01:49:50 +03:00
parent 847a610d4b
commit ddefb92a1e
2 changed files with 1 additions and 5 deletions

View File

@ -1,2 +1,2 @@
dist
#node_modules
node_modules

View File

@ -3,10 +3,6 @@ FROM node:5.11
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Install app dependencies
COPY package.json /usr/src/app/
RUN npm i
# Bundle app source
COPY . /usr/src/app