https://github.com/Microsoft/TypeScript
Raw File
Tip revision: e4787d1e049e3e0df31d5643ccaa2518463ef273 authored by Daniel Rosenwasser on 09 January 2020, 00:08:00 UTC
Update LKG.
Tip revision: e4787d1
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