Skip test dependencies in Docker image.

This commit is contained in:
Tobias Lidskog 2016-09-25 22:35:34 +02:00
parent 33249899ae
commit e3d1d19352
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json /usr/src/app/
RUN npm install
RUN npm install --production
COPY . /usr/src/app
COPY docker/scripts/start.sh /start.sh