https://github.com/Microsoft/TypeScript
Raw File
Tip revision: a1e2a4bd4e466824ac72340740ac408720b2099a authored by TypeScript Bot on 16 June 2021, 23:19:48 UTC
Bump version to 4.1.6 and LKG
Tip revision: a1e2a4b
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