https://github.com/Microsoft/TypeScript
Raw File
Tip revision: f0a6fd3a727f8dc042f797fa16609734b14a3498 authored by Daniel Rosenwasser on 02 October 2020, 23:34:33 UTC
Guard against no parent nodes.
Tip revision: f0a6fd3
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