make working test

This commit is contained in:
amit.kumar 2019-06-19 18:16:18 +05:30
parent c6c699bc0f
commit 8af8fe10e4

View file

@ -17,7 +17,7 @@ COPY shared/package-lock.json /app/shared/package-lock.json
COPY zone-mta/package.json /app/zone-mta/package.json
COPY zone-mta/package-lock.json /app/zone-mta/package-lock.json
RUN for idx in client shared server zone-mta; do (cd $idx && npm install --production); done
RUN for idx in client shared server zone-mta; do (cd $idx && npm install); done
# Later, copy the app files. That improves development speed as buiding the Docker image will not have
# to download and install all the NPM dependencies every time there's a change in the source code