https://github.com/Microsoft/TypeScript
Raw File
Tip revision: ea348f67aa6215f86ee5107be7db299e2e6bede8 authored by TypeScript Bot on 07 September 2022, 18:49:12 UTC
Bump version to 4.8.3 and LKG
Tip revision: ea348f6
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