Revision 787bb76bc4376ec63c27a2fbb634d87c138da902 authored by TypeScript Bot on 01 October 2021, 21:10:31 UTC, committed by TypeScript Bot on 01 October 2021, 21:10:31 UTC
1 parent a02a7ab
Raw File
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