https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 416323d96786ec2413b9948ac8824acda9a6add7 authored by Nathan Shively-Sanders on 26 October 2021, 15:06:24 UTC
Merge branch 'main' into dump-variances
Tip revision: 416323d
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