https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 5d1e364bfe86aad426b945625f54f19f36e64284 authored by Anders Hejlsberg on 28 August 2022, 15:35:44 UTC
Merge branch 'main' into fix48070
Tip revision: 5d1e364
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