https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 20983ae5473eff1dd1635c3962305dbef6dfb054 authored by Ryan Cavanaugh on 01 October 2019, 00:34:36 UTC
3.7 LKG update (#33690)
Tip revision: 20983ae
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 install
RUN npm i -g gulp-cli
RUN gulp configure-insiders && gulp LKG && gulp clean && npm pack .
back to top