https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 264d27e77947adc8ff86c5cad6abd04291e19088 authored by TypeScript Bot on 06 August 2020, 17:37:28 UTC
🤖 Pick PR #39937 (Handle empty package.json files) into release-4.0 (#39938)
Tip revision: 264d27e
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