Revision ab879939dfcbd9b803dc32d59fb757d24abb34c6 authored by Sergey Tychinin on 01 October 2019, 14:02:25 UTC, committed by Joey Watts on 01 October 2019, 14:48:17 UTC
Signed-off-by: Sergey Tychinin <stychinin@bloomberg.net>
1 parent 7be7cba
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