https://github.com/Microsoft/TypeScript
Raw File
Tip revision: f70a37958f23b3039fc72716489e04d983bcb842 authored by Ron Buckton on 10 September 2020, 01:56:21 UTC
Minor comment cleanup
Tip revision: f70a379
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