https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 6e62273fa1e7469b89b589667c2c233789c62176 authored by TypeScript Bot on 06 April 2022, 00:23:35 UTC
Bump version to 4.7.0-beta and LKG
Tip revision: 6e62273
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