https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 55e13e9115b3cc5458d76c39da1211dc28d7b51f authored by TypeScript Bot on 20 January 2022, 00:53:53 UTC
Bump version to 4.5.5 and LKG
Tip revision: 55e13e9
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