https://github.com/Microsoft/TypeScript
Raw File
Tip revision: af81f6a3e14cffe38b041e9e928fe394e316c06b authored by Nathan Oshlag on 24 October 2022, 16:43:51 UTC
Commit with "double quotes" and 'single quotes'
Tip revision: af81f6a
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