https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 34f0e32dc667eb8c7b52b3fc4067316b4ae97774 authored by TypeScript Bot on 03 March 2021, 19:24:22 UTC
Bump version to 4.2.3 and LKG
Tip revision: 34f0e32
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