https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 4d66638ac60f7b6f2bc58ff0d1b16f0a0e0976b8 authored by Sheetal Nandi on 09 June 2022, 16:39:35 UTC
Merge branch 'main' into packageJsonWatch
Tip revision: 4d66638
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