https://github.com/Microsoft/TypeScript
Raw File
Tip revision: cda54b83dc812118c8de77a2bae479e38f4e67ae authored by Daniel Rosenwasser on 23 January 2020, 18:12:55 UTC
Update LKG.
Tip revision: cda54b8
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