https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 55e564a74a459976625677bd26bf647007723b7d authored by Daniel Rosenwasser on 25 August 2022, 00:34:21 UTC
Guard against empty sets of changes for quick-fixes/refactorings/organize-imports.
Tip revision: 55e564a
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