https://github.com/Microsoft/TypeScript
Raw File
Tip revision: d64ead366afc588af7438aacfab467e9bd0e5b2b authored by Daniel Rosenwasser on 18 July 2019, 20:17:27 UTC
Accepted baselines.
Tip revision: d64ead3
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