Revision d92aca2715a62f5120edd5195ed77b2427f31edd authored by Wesley Wigham on 25 February 2020, 22:23:55 UTC, committed by GitHub on 25 February 2020, 22:23:55 UTC
* Reduce lerna loglevel

* Also add silent
1 parent 8a797ca
Raw File
Dockerfile
# We use this dockerfile to build a packed tarfile which we import in our `docker` tests
FROM node:current
COPY . /typescript
WORKDIR /typescript
RUN npm install
RUN npm i -g gulp-cli
RUN gulp configure-insiders && gulp LKG && gulp clean && npm pack .
back to top