https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 617009aff6d441169d7f20f998758f605d9adcc4 authored by Nathan Shively-Sanders on 01 August 2022, 16:31:24 UTC
Merge branch 'main' into server-vfs-support
Tip revision: 617009a
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