https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 30734a05e2287250587ffb7b8f4a7a20af89de10 authored by Daniel Rosenwasser on 10 February 2021, 20:15:13 UTC
Pin Node for Volta, bump version to 3.7.7, update LKG
Tip revision: 30734a0
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