https://github.com/Microsoft/TypeScript
Raw File
Tip revision: aace53f7d71af11e4b89dd074a1657964a22d0b4 authored by TypeScript Bot on 10 February 2021, 00:22:08 UTC
Bump version to 4.1.5 and LKG
Tip revision: aace53f
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 ci
RUN npm i -g gulp-cli
RUN gulp configure-insiders && gulp LKG && gulp clean && npm pack .
back to top