Revision e9092f3723c874f4b98ca2a53d3375d817bbd843 authored by Andrew Branch on 27 January 2022, 18:21:08 UTC, committed by GitHub on 27 January 2022, 18:21:08 UTC
* Simplify import fix descriptions

* Update tests

* Fix new test
1 parent 208cb2d
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